You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's start by operating on a single timestep of data. The fields you will have are SST and SSS.
Step 1: Calculate tendency of SST and and SSS from mixing
From this, we want to calculate M(T) and M(S): the tendency from mixing for temperature and salinity.
How will you calculate M(T)?Using @paigem's code. She has already coded up the POP biharmonic mixing operator. We can just take that code directly and use it here.
Step 2: Convert these to a density tendency
The density tendency from mixing of T and S is given by
dρ/dT M(T) + dρ/dS M(S)
You can get the thermodynamic coefficients from fastjmd95.
Step 3: Decompose into the following form
dρ/dT M(T) + dρ/dS M(S) = M(rho) + C
You can calculate C as
C = dρ/dT M(T) + dρ/dS M(S) - M(rho)
Acceptance criteria
How will we know when this task is complete:
We will have a standalone python script file (mixing_tendency.py) in this repo which, when executed python mixing_tendency.py, produces four figures independent figures
M(T)
M(S)
M(rho)
C
No notebooks!
The text was updated successfully, but these errors were encountered:
Let's start by operating on a single timestep of data. The fields you will have are SST and SSS.
Step 1: Calculate tendency of SST and and SSS from mixing
From this, we want to calculate
M(T)
andM(S)
: the tendency from mixing for temperature and salinity.How will you calculate
M(T)
? Using @paigem's code. She has already coded up the POP biharmonic mixing operator. We can just take that code directly and use it here.Step 2: Convert these to a density tendency
The density tendency from mixing of T and S is given by
You can get the thermodynamic coefficients from fastjmd95.
Step 3: Decompose into the following form
You can calculate C as
Acceptance criteria
How will we know when this task is complete:
mixing_tendency.py
) in this repo which, when executedpython mixing_tendency.py
, produces four figures independent figuresM(T)
M(S)
M(rho)
C
No notebooks!
The text was updated successfully, but these errors were encountered: