Changeset 27817
- Timestamp:
- 06/30/23 15:32:51 (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/cores/transient_core.cpp
r27732 r27817 157 157 femmodel->parameters->FindParam(&isstochasticforcing,StochasticForcingIsStochasticForcingEnum); 158 158 159 #if defined(_HAVE_OCEAN_)160 if(isoceancoupling) OceanExchangeDatax(femmodel,false);161 #endif162 163 159 if(isstochasticforcing) StochasticForcingx(femmodel); 164 160 … … 198 194 if(isdebris) debris_core(femmodel); 199 195 196 #if defined(_HAVE_OCEAN_) 197 if(isoceancoupling) { 198 /*First calculate thickness change without melt (dynamic thinning) to send to ocean 199 * then receive ocean melt 200 * then go back to the previous geometry to continue the transient with the melt received*/ 201 InputUpdateFromConstantx(femmodel,0.,BasalforcingsFloatingiceMeltingRateEnum); 202 masstransport_core(femmodel); 203 OceanExchangeDatax(femmodel,false); 204 InputDuplicatex(femmodel,ThicknessOldEnum,ThicknessEnum); 205 InputDuplicatex(femmodel,BaseOldEnum,BaseEnum); 206 InputDuplicatex(femmodel,SurfaceOldEnum,SurfaceEnum); 207 } 208 #endif 209 200 210 /* from here on, prepare geometry for next time step*/ 201 211
Note:
See TracChangeset
for help on using the changeset viewer.