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

Other CTT estimation options #2

Open
zmoon opened this issue Aug 31, 2022 · 2 comments
Open

Other CTT estimation options #2

zmoon opened this issue Aug 31, 2022 · 2 comments
Labels
enhancement New feature or request
Milestone

Comments

@zmoon
Copy link
Collaborator

zmoon commented Aug 31, 2022

@qlawton is exploring the methods in Christensen and Driver (2021) (section 3.1). It would be cool for us to provide some other options for OLR -> CTT. Could also provide some Tb -> CTT options instead of assuming same.

@zmoon
Copy link
Collaborator Author

zmoon commented Oct 16, 2022

Another option: Yang and Slingo (2001) (OLR <-> "window Tb")

image

@zmoon zmoon added the enhancement New feature or request label Apr 4, 2023
@zmoon
Copy link
Collaborator Author

zmoon commented Nov 8, 2023

There is one we are using in the DYAMOND comparison (same as mentioned in the previous comment):

# Yang and Sligo (2001)
# Given by Zhe
a = 1.228
b = -1.106e-3
tf = (ds["olr"] / sigma) ** 0.25
ds["tb"] = (-a + np.sqrt(a**2 + 4 * b * tf)) / (2 * b)
ds["tb"].attrs.update(
long_name="brightness temperature",
units="K",
)

@zmoon zmoon added this to the v0.2 milestone Jun 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant