|
MOM6
|
Compute the freezing point potential temperature [degC] from salinity [ppt] and pressure [Pa] using a simple linear expression, with coefficients passed in as arguments.
Definition at line 18 of file MOM_TFreeze.F90.
Private functions | |
| subroutine | calculate_tfreeze_linear_scalar (S, pres, T_Fr, TFr_S0_P0, dTFr_dS, dTFr_dp) |
| This subroutine computes the freezing point potential temperature [degC] from salinity [ppt], and pressure [Pa] using a simple linear expression, with coefficients passed in as arguments. More... | |
| subroutine | calculate_tfreeze_linear_array (S, pres, T_Fr, start, npts, TFr_S0_P0, dTFr_dS, dTFr_dp) |
| This subroutine computes an array of freezing point potential temperatures [degC] from salinity [ppt], and pressure [Pa] using a simple linear expression, with coefficients passed in as arguments. More... | |
Compute the freezing point potential temperature [degC] from salinity [ppt] and pressure [Pa] using a simple linear expression, with coefficients passed in as arguments.
Definition at line 18 of file MOM_TFreeze.F90.
|
private |
This subroutine computes an array of freezing point potential temperatures [degC] from salinity [ppt], and pressure [Pa] using a simple linear expression, with coefficients passed in as arguments.
| [in] | s | salinity [ppt]. |
| [in] | pres | pressure [Pa]. |
| [out] | t_fr | Freezing point potential temperature [degC]. |
| [in] | start | the starting point in the arrays. |
| [in] | npts | the number of values to calculate. |
| [in] | tfr_s0_p0 | The freezing point at S=0, p=0, [degC]. |
| [in] | dtfr_ds | The derivative of freezing point with salinity, [degC PSU-1]. |
| [in] | dtfr_dp | The derivative of freezing point with pressure, [degC Pa-1]. |
Definition at line 62 of file MOM_TFreeze.F90.
|
private |
This subroutine computes the freezing point potential temperature [degC] from salinity [ppt], and pressure [Pa] using a simple linear expression, with coefficients passed in as arguments.
| [in] | s | salinity [ppt]. |
| [in] | pres | pressure [Pa]. |
| [out] | t_fr | Freezing point potential temperature [degC]. |
| [in] | tfr_s0_p0 | The freezing point at S=0, p=0 [degC]. |
| [in] | dtfr_ds | The derivative of freezing point with salinity, [degC ppt-1]. |
| [in] | dtfr_dp | The derivative of freezing point with pressure, [degC Pa-1]. |
Definition at line 44 of file MOM_TFreeze.F90.