File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
source/world_builder/features
oceanic_plate_models/composition
subducting_plate_models/composition Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ namespace WorldBuilder
179179 double partition_coefficient = calculate_water_content (lithostatic_pressure,
180180 slab_temperature);
181181
182- partition_coefficient = std::min (max_water_content, partition_coefficient);
182+ partition_coefficient = std::min (max_water_content, partition_coefficient) / 100 ;
183183
184184 for (unsigned int i = 0 ; i < compositions.size (); ++i)
185185 {
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ namespace WorldBuilder
172172 double partition_coefficient = calculate_water_content (lithostatic_pressure,
173173 slab_temperature);
174174
175- partition_coefficient = std::min (max_water_content, partition_coefficient);
175+ partition_coefficient = std::min (max_water_content, partition_coefficient) / 100 ;
176176
177177 for (unsigned int i = 0 ; i < compositions.size (); ++i)
178178 {
You can’t perform that action at this time.
0 commit comments