Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
SimAquaLife
GR3D
Commits
3dff7090
Commit
3dff7090
authored
Jul 01, 2020
by
Poulet Camille
Browse files
Correction on excretion rate (daily input)
parent
f9343837
Changes
2
Hide whitespace changes
Inline
Side-by-side
data/input/atlanticarea/fishTryRealBV_CC_Alosa.xml
View file @
3dff7090
...
...
@@ -19,11 +19,11 @@
<excretionRate
class=
"hashtable"
>
<entry>
<string>
P
</string>
<double>
2.17
E-
6
</double>
<double>
5.208
E-
5
</double>
</entry>
<entry>
<string>
N
</string>
<double>
2.471
E-
5
</double>
<double>
5.9304
E-
4
</double>
</entry>
</excretionRate>
<fishFeaturesPreSpawning
class=
"hashtable"
>
...
...
@@ -280,7 +280,7 @@
<exportSeason>
SPRING
</exportSeason>
<fileNameOutput>
effectiveBiomassFluxesBeforeReproduction
</fileNameOutput>
</species.WriteEffectiveAndBiomassFluxes>
<species.ReproduceAndSurviveAfterReproductionWithDiagnose>
<synchronisationMode>
ASYNCHRONOUS
</synchronisationMode>
<reproductionSeason>
SPRING
</reproductionSeason>
...
...
@@ -303,6 +303,12 @@
<displayFluxesOnConsole>
false
</displayFluxesOnConsole>
</species.ReproduceAndSurviveAfterReproductionWithDiagnose>
<species.WriteEffectiveAndBiomassFluxes>
<synchronisationMode>
ASYNCHRONOUS
</synchronisationMode>
<exportSeason>
SPRING
</exportSeason>
<fileNameOutput>
effectiveBiomassFluxesAfterReproduction
</fileNameOutput>
</species.WriteEffectiveAndBiomassFluxes>
<species.MigrateToSea>
<seaMigrationSeason>
SUMMER
</seaMigrationSeason>
<synchronisationMode>
ASYNCHRONOUS
</synchronisationMode>
...
...
src/main/java/species/DiadromousFishGroup.java
View file @
3dff7090
...
...
@@ -196,8 +196,8 @@ public class DiadromousFishGroup extends AquaNismsGroup< DiadromousFish, BasinNe
Map
<
String
,
Double
>
anExcretionRate
=
new
Hashtable
<
String
,
Double
>();
anExcretionRate
.
put
(
"N"
,
24.71
E
-
6
);
//values from Barber et al, Alosa sapidissima in ug/g wet mass/hour : convertit en g
anExcretionRate
.
put
(
"P"
,
2.17
E
-
6
);
//values from Barber et al, Alosa sapidissima in ug/g wet mass/hour: convertit en g
anExcretionRate
.
put
(
"N"
,
24.71
E
-
6
*
24
);
//values from Barber et al, Alosa sapidissima in ug/g wet mass/hour : convertit en g
anExcretionRate
.
put
(
"P"
,
2.17
E
-
6
*
24
);
//values from Barber et al, Alosa sapidissima in ug/g wet mass/hour: convertit en g
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment