-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Question about using skin temperature as sst input for noskin function in ECMWF algorithm #60
Comments
Interesting question @hhweiCT. Re the skin function I will raise a detailed issue shortly. I am concerned about this:
This is not what I observed last I checked. Could you confirm your version? Are you running this in a notebook or script? The latter often provides better error messages so that might be worth a try.
What sizes are we talking here? This might just run out of memory on your machine.
Can you provide a minimal example which I could reproduce? Assuming that we figure out what is leading to the crash I suppose you could actually see if your approach is good enough yourself: Compute some representative values for noskin using skin_sst and skin with bulk sst, then compare the results. ccing @brodeau who might have more insight into the actual algorithm and whether my naive suggestion is reasonable or not. |
Thank you so much! I will provide more information for the crash soon. (Also, try to use script again instead of notebook) Yes, that is what I wanted to try too (compare "noskin using skin_sst" and "skin with bulk sst"). I will for sure do that after making the skin function work. |
This is my code
As I wrote in the comments, if I use the whole North Pacific spatial range, I encounter error message (after using script, the error message did show up! thanks! ) *** E R R O R : If I use a smaller spatial range, it does not trigger error but the output skin temperature (T_s_output_skin) is around 400K. The flux LH (order of 10^5) and SH (order of -10^3) are also not with reasonable values. I am not sure where I did wrong. I also check the code by running the noskin function with the same input, that one does output reasonable LH, SH values. I tried to go into the Fortran code and it seems that the slp values when using the skin function is not correct (I tried to output the slp in the BULK_FORMULA, it is in the order of 100, instead of 10^5). I am not sure whether it is the reason. I also cannot figure out why the slp is different. Thanks for your help!! |
Hi, thank you so much for providing this useful python package.
I used noskin function and it works well. Since I would like to use the ECMWF algorithm, the instruction said that we should use the skin function. When I use skin function, it crashed without any error message. I can make it not crash by reducing the input array dimension size but the output value does not look reasonable.
I saw some discussion saying the skin function is not working yet. Therefore, I am wondering whether I can use the noskin function but use "skin temperature" as the sst input (instead of the bulk sst) for the ECMWF algorithm. I checked the code and it seems that the skin function would update the T_s from sst to skin temperature with the cold-skin+warm-layer scheme. Thanks!
The text was updated successfully, but these errors were encountered: