Changeset 13112
- Timestamp:
- 2020-06-16T16:37:01+02:00 (5 years ago)
- Location:
- branches/UKMO/dev_r5518_GO6_package_FOAMv14_ssh_dt/NEMOGCM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/UKMO/dev_r5518_GO6_package_FOAMv14_ssh_dt/NEMOGCM/CONFIG/SHARED/field_def.xml
r13020 r13112 65 65 <field id="ssh2" long_name="square of sea surface height" standard_name="square_of_sea_surface_height_above_geoid" unit="m2" > ssh * ssh </field > 66 66 <field id="sshmax" long_name="max of sea surface height" field_ref="ssh" operation="maximum" /> 67 <field id="sshdt" long_name="sea surface height tendency" standard_name="tendency_of_sea_surface_height_above_sea_level" unit="m/s" /> 68 67 <field id="sshdt" long_name="sea surface height tendency" standard_name="tendency_of_sea_surface_height_above_sea_level" unit="m/s" /> 68 <field id="sshdtabs" long_name="absolute sea surface height tendency" standard_name="absolute_tendency_of_sea_surface_height_above_sea_level" unit="m/s" /> 69 69 70 <field id="mldkz5" long_name="Turbocline depth (Kz = 5e-4)" standard_name="ocean_mixed_layer_thickness_defined_by_vertical_tracer_diffusivity" unit="m" /> 70 71 <field id="mldr10_1" long_name="Mixed Layer Depth (dsigma = 0.01 wrt 10m)" standard_name="ocean_mixed_layer_thickness_defined_by_sigma_theta" unit="m" /> -
branches/UKMO/dev_r5518_GO6_package_FOAMv14_ssh_dt/NEMOGCM/NEMO/OPA_SRC/DIA/diawri.F90
r13111 r13112 163 163 CALL iom_put( "ssh" , sshn ) ! sea surface height 164 164 CALL iom_put( "sshdt" , ( sshn - sshb ) / rdt ) ! sea surface height tendency (per second) 165 165 CALL iom_put( "sshdtabs" , ABS ( ( sshn - sshb ) / rdt ) ) ! absolute value of sea surface height tendency (per second) 166 166 167 CALL iom_put( "toce", tsn(:,:,:,jp_tem) ) ! 3D temperature 167 168 CALL theta2t ! in-situ temperature conversion
Note: See TracChangeset
for help on using the changeset viewer.