Skip to content

Commit

Permalink
Change fCO2 to FCO2 for flux calculations. fCO2 refers to fugacity of…
Browse files Browse the repository at this point in the history
… CO2.
  • Loading branch information
ognancy4life committed Jun 19, 2021
1 parent 92ca649 commit ea43417
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions OCG_Saildrone_Lesson_Notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,15 +385,15 @@
a = np.exp(K0)

#CO2 flux equation
Saildrone_CO2['fCO2'] = 0.24 * K * a * dpCO2 #FCO2 = K*a(dpCO2)
Saildrone_CO2['FCO2'] = 0.24 * K * a * dpCO2 #FCO2 = K*a(dpCO2)
# -

# Let's plot the time series of carbon fluxes together with the time series of wind speed to see how they are related. Sign of fCO2?
# Let's plot the time series of carbon fluxes together with the time series of wind speed to see how they are related. Sign of FCO2?

# +
#variables to plot
var1 = 'WSPD (m/s)'
var2 = 'fCO2'
var2 = 'FCO2'

#colors
c1 = 'darkblue'
Expand Down

0 comments on commit ea43417

Please sign in to comment.