-
Notifications
You must be signed in to change notification settings - Fork 4
Description
As other parameters did not show much difference, I checked with CwwE and CwwD for wind-only and cooling-only cases and saw a factor of 10 difference for these values. Before moving forward, I want to clarify if this due to a significant change of length scale for both convection and shear cases or some other error.
c2, c4, c16 are cooling-only test cases with a heat flux of -100 W/m^2, -200 W/m^2, and -800 W/m^2 respectively. w1, w2, w5 are wind-only test cases with wind stress of 0.01 N/m^2, 0.02 N/m^2, and 0.05 N/m^2 respectively. I have shown only 1m and 2m resolutions plots here.
Parameter space best suited for the cooling cases are:
config_adc_alpha_tracer1 = 0.6
config_adc_alpha_tracer2 = 1.0
config_adc_c11 = 0.1
config_adc_Cmom = 0.5
config_adc_Ctherm = 0.5
config_adc_Cmom_w3 = 10.0
config_adc_c_slow = 2.0
config_adc_slow_w_factor = 0.875
config_adc_c_slow_tracer = 2.0
config_adc_dissipation_constant = 10.0
config_adc_CwwE = 1.0
config_adc_CwwD = 1.5
Cooling cases:





Now, wind case with similar parameters as in cooling case:


Here w^3 is of the order of -3.00002576e-14 below the mixed layer and hence the areaFraction is 0.01., due to the condition: if(w3check < 3e-14_RKIND) w3check = 1.0_RKIND.
If I change w3check to 0.0 instead of 1.0, area fraction becomes 0.5 below the mixed layer.
Now For wind case:
(keeping other parameters same as above and following changes):
config_adc_CwwE = 10.0
config_adc_CwwD = 15.0
Now for wind+cooling cases (t1w: -50W/m^2+0.01 N/m^2, t2w: -100W/m^2+0.01 N/m^2, t4w: -200W/m^2+0.01 N/m^2), as heat flux increases, CwwE and CwwD need to change from wind case values (10,15) to cooling case values (1,1.5).



