Changeset 26452
- Timestamp:
- 09/21/21 15:59:26 (3 years ago)
- Location:
- issm/trunk-jpl/test
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/test/MITgcm/code_4003/SHELFICE_OPTIONS.h ¶
r24121 r26452 16 16 17 17 C allow code for simple ISOMIP thermodynamics 18 !#defineALLOW_ISOMIP_TD18 #undef ALLOW_ISOMIP_TD 19 19 20 20 C allow friction velocity-dependent transfer coefficient 21 21 C following Holland and Jenkins, JPO, 1999 22 22 #define SHI_ALLOW_GAMMAFRICT 23 C in uStar expression, use wet-point method to average velocity24 C at grid-cell center25 !#define SHI_USTAR_WETPOINT26 23 24 C allow (vertical) remeshing whenever ocean top thickness factor 25 C exceeds thresholds 27 26 #define ALLOW_SHELFICE_REMESHING 28 #define SHI_USTAR_TOPDR 29 # undef ALLOW_SHELFICE_GROUNDED_ICE27 C and allow to print message to STDOUT when this happens 28 #define SHELFICE_REMESH_PRINT 30 29 31 30 #endif /* ALLOW_SHELFICE */ -
TabularUnified issm/trunk-jpl/test/MITgcm/code_4003/packages.conf ¶
r24121 r26452 1 1 gfd 2 2 shelfice 3 streamice4 3 obcs 5 4 diagnostics -
TabularUnified issm/trunk-jpl/test/MITgcm/code_4003/shelfice_step_icemass.F ¶
r26449 r26452 45 45 C i,j, bi,bj :: loop indices 46 46 INTEGER bi,bj,i,j 47 _RL issm_density 48 issm_density = 917. 47 49 48 50 IF ( SHELFICEMassStepping ) THEN … … 65 67 ENDDO 66 68 #endif /* ALLOW_STREAMICE */ 69 70 ELSEIF (useCoupler) 71 72 #ifdef ALLOW_CPL_ISSM 73 DO bj = myByLo(myThid), myByHi(myThid) 74 DO bi = myBxLo(myThid), myBxHi(myThid) 75 DO j=1-OLy,sNy+OLy-1 76 DO i=1-OLx+1,sNx+OLx-1 77 shelficeMass(i,j,bi,bj) = 78 & R_shelfIce(i,j,bi,bj) * issm_density 79 ENDDO 80 ENDDO 81 ENDDO 82 ENDDO 83 #endif /* ALLOW_CPL_ISSM */ 67 84 68 85 ELSE -
TabularUnified issm/trunk-jpl/test/MITgcm/coupling_rules.txt ¶
r22707 r26452 11 11 yC Nx*Ny Real*8 10001006 12 12 IceBase Nx*Ny Real*8 10001007 13 (in m, 0 is sea level, negative is below sea level, 9999 is no ice, 14 use density 917 kg/m^3) 13 15 OceanMelt Nx*Ny Real*8 10001008 14 16 -
TabularUnified issm/trunk-jpl/test/NightlyRun/test4003.m ¶
r24862 r26452 4 4 %Script control parameters 5 5 steps=1:11; 6 steps=1:5; 6 7 final_time=1/365; 7 8
Note:
See TracChangeset
for help on using the changeset viewer.