Commit dcd002ba authored by Poulet Camille's avatar Poulet Camille
Browse files

Excretion corrected

Without the composition of individuals
Showing with 3 additions and 6 deletions
+3 -6
...@@ -177,8 +177,7 @@ public class FishNutrient { ...@@ -177,8 +177,7 @@ public class FishNutrient {
* compoCarcassPreSpawning.get(fish.getGender()).get(nutrient); * compoCarcassPreSpawning.get(fish.getGender()).get(nutrient);
double excretion = totalWeightPre double excretion = totalWeightPre
* residenceTime * residenceTime
* excretionRate.get(nutrient) * excretionRate.get(nutrient) ;
* compoCarcassPreSpawning.get(fish.getGender()).get(nutrient);
double nutrientImport = carcass + excretion; double nutrientImport = carcass + excretion;
nutrientsInput.put(nutrient, nutrientImport); nutrientsInput.put(nutrient, nutrientImport);
...@@ -218,8 +217,7 @@ public class FishNutrient { ...@@ -218,8 +217,7 @@ public class FishNutrient {
*compoGametes.get(fish.getGender()).get(nutrient); //TODO: FAUX ! Revoir comment calculer les gamtes *compoGametes.get(fish.getGender()).get(nutrient); //TODO: FAUX ! Revoir comment calculer les gamtes
double excretion = totalWeightPost double excretion = totalWeightPost
* residenceTime * residenceTime
* excretionRate.get(nutrient) * excretionRate.get(nutrient);
* compoCarcassPostSpawning.get(fish.getGender()).get(nutrient);
double nutrientImport = carcass + gametes + excretion; double nutrientImport = carcass + gametes + excretion;
nutrientsInput.put(nutrient,nutrientImport); nutrientsInput.put(nutrient,nutrientImport);
...@@ -253,8 +251,7 @@ public class FishNutrient { ...@@ -253,8 +251,7 @@ public class FishNutrient {
* compoGametes.get(fish.getGender()).get(nutrient); * compoGametes.get(fish.getGender()).get(nutrient);
double excretion = totalWeightPost double excretion = totalWeightPost
* residenceTime * residenceTime
* excretionRate.get(nutrient) * excretionRate.get(nutrient);
* compoCarcassPostSpawning.get(fish.getGender()).get(nutrient);
double nutrientImport = gametes + excretion; double nutrientImport = gametes + excretion;
//TotalWeigthPre - TotalWeightPost = gonad weight loss = gamete emission //TotalWeigthPre - TotalWeightPost = gonad weight loss = gamete emission
//Gamete compositions depends on sex. //Gamete compositions depends on sex.
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment