Hello, I have not completely solved it, I just made some attempts:I want to set the solar radiation from convective cloud tops to a fixed value (such as 800w).
But I didn't know how to set parameters.
whether can I set the constant value through modifying the namelist.input.
thank you!
@xpji
There is no namelist option to specify solar radiation at convective cloud tops. You have to modify codes. Below is my suggestions how to do so:
(1) pass CUTOP to radiation driver and then to the specific radiation scheme you use
(2) identify the variable of solar radiation in the radiation scheme, then set the value to be 800 at the level of CUTOP.
This is a quite general route to follow. Also, note that such modifications will lead to physically unreasonable results since radiation above and below the CUTOP are still calculated by the radiation scheme.
in fact, i add the "sol_azi = pi" in the source code to keep the solar angle fixed and achieve a fixed solar radiation value.Oh thanks for linking the driver, it looks like we can perhaps alter "SOLCON=1370.*ECCFAC" within the radiation driver.
For your case, I think you would need to set SOLCON=800
Is this what you did?