Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add stdatmus_z2tdp outputs #91

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft

Conversation

cyschneck
Copy link
Contributor

Add stdatmus_z2tdp output values to use for stdatmus_z2tdp in applications

Output built from ncl script:

; stdatmus_z2tdp
; Adapted from https://www.ncl.ucar.edu/Document/Functions/Built-in/stdatmus_z2tdp.shtml

; ncl -n stdatmus_z2tdp.ncl >> stdatmus_z2tdp_output.txt

print("Height (m), Temperature (C), Density (kg/m^3), Pressure (hPa (mb))")
do z=0,84852
	begin
		tdp = stdatmus_z2tdp(z)
		print (z + "," + tdp(0) + "," + tdp(1) + "," + tdp(2))
	end
end do

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant