Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

drag coefficient in wrf

water

New member
When I do the ideal test to simulate a tropical cyclone, the roughness on land is a fixed value, but the drag coefficient is variable and can be up to = 0.1, is this normal?drag coefficient.png
 
The calculation of surface exchange coefficient is conducted in phys/module_sf_sfclayrev.F, in which you can find the folloiwng piece of code:
Code:
        IF(PRESENT(ck) .and. PRESENT(cd) .and. PRESENT(cka) .and. PRESENT(cda)) THEN


           Ck(I)=(karman/psix10)*(karman/psiq10)


           Cd(I)=(karman/psix10)*(karman/psix10)


           Cka(I)=(karman/psix)*(karman/psiq)


           Cda(I)=(karman/psix)*(karman/psix)

        ENDIF
 
The calculation of surface exchange coefficient is conducted in phys/module_sf_sfclayrev.F, in which you can find the folloiwng piece of code:
Code:
        IF(PRESENT(ck) .and. PRESENT(cd) .and. PRESENT(cka) .and. PRESENT(cda)) THEN


           Ck(I)=(karman/psix10)*(karman/psiq10)


           Cd(I)=(karman/psix10)*(karman/psix10)


           Cka(I)=(karman/psix)*(karman/psiq)


           Cda(I)=(karman/psix)*(karman/psix)

        ENDIF
Thank you very much for your help. I would also like to ask how to modify soil moisture availability profiles.
 
Top