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 {
* compoCarcassPreSpawning.get(fish.getGender()).get(nutrient);
double excretion = totalWeightPre
* residenceTime
* excretionRate.get(nutrient)
* compoCarcassPreSpawning.get(fish.getGender()).get(nutrient);
* excretionRate.get(nutrient) ;
double nutrientImport = carcass + excretion;
nutrientsInput.put(nutrient, nutrientImport);
......@@ -218,8 +217,7 @@ public class FishNutrient {
*compoGametes.get(fish.getGender()).get(nutrient); //TODO: FAUX ! Revoir comment calculer les gamtes
double excretion = totalWeightPost
* residenceTime
* excretionRate.get(nutrient)
* compoCarcassPostSpawning.get(fish.getGender()).get(nutrient);
* excretionRate.get(nutrient);
double nutrientImport = carcass + gametes + excretion;
nutrientsInput.put(nutrient,nutrientImport);
......@@ -253,8 +251,7 @@ public class FishNutrient {
* compoGametes.get(fish.getGender()).get(nutrient);
double excretion = totalWeightPost
* residenceTime
* excretionRate.get(nutrient)
* compoCarcassPostSpawning.get(fish.getGender()).get(nutrient);
* excretionRate.get(nutrient);
double nutrientImport = gametes + excretion;
//TotalWeigthPre - TotalWeightPost = gonad weight loss = gamete emission
//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