drag coefficient in wrf

water

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.
 
Dear professor, why i can not find the calculation of surface exchange coefficient in phys/module_sf_sfclayrev.F? My WRF is v4.7.1. And I wonder the difference of the calculation of Cd when isftcflx=0,1, or 2 with sf_sfclay_physics=1.
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
 
Back
Top