Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Python/COARE3.5/meteo.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ def rhod(t,p):

"""
Rd = 287.058 # gas const for dry air in J/kg K
tk = t+273.15 # deg Kelvin
Tk = t+273.15 # deg Kelvin
Pa = p*100 # Pascals
Rdry = Pa/(Rd*Tk) # dry air density, kg/m3
return Rd
return Rdry


def grv(latitude):
Expand Down