diff --git a/src/main/java/species/FishNutrient.java b/src/main/java/species/FishNutrient.java index cd09d24a14ebe30747f1a78f2f19f6fbfea29081..e1befab90ba189217cad6e113d2b7b7d8b4fe365 100644 --- a/src/main/java/species/FishNutrient.java +++ b/src/main/java/species/FishNutrient.java @@ -203,7 +203,7 @@ public class FishNutrient { * compoCarcassPostSpawning.get(fish.getGender()).get(nutrient); //double gametes = (totalWeightPre - totalWeightPost) FAUX car perte de poids somatique due a la reproduction double gametes = spawnedGametesWeight.get(fish.getGender()) - *compoGametes.get(fish.getGender()).get(nutrient); //TODO: FAUX ! Revoir comment calculer les gamètes + *compoGametes.get(fish.getGender()).get(nutrient); double excretion = totalWeightPost * residenceTime * excretionRate.get(nutrient); @@ -438,7 +438,7 @@ public static void main(String[] args) { aCompoGametes.put(Gender.FEMALE,aCompo); aCompo = new Hashtable<String,Double>(); - aCompo.put("N", 3.250 / 100.); + aCompo.put("N", 3.250 / 100.); // Approximée par la compo des gonades aCompo.put("P", 0.724 / 100.); aCompoGametes.put(Gender.MALE,aCompo);