-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adc_parameters_optimization #24
Comments
@BrodiePearson , here are the plots for one cooling and one wind case. |
@amrapallig Thanks for making these subplots. One thing concerns me:
The increased
In both cases just run these changes for the wind-case using the setup of the red-dashed line simulation above (convective diffusion parameters). It would be useful to see plots of the three TKE components and the vertical momentum fluxes ( |
@BrodiePearson @katsmith133 @vanroekel temperature profiles_ (parameters similar to the plot above(red,blue,cyan,magenta)) It seems uw profiles kickback to zero in some cyclic manner after encountering a positive value that contributes to a shallower mixed layer and again wind forcing acts on it with a initial mixed layer. I ran for 50 days and adc still shows a similar pattern over some time intervals. |
I think that the original vwtend2 term was correct (the sum of alpha_1 and alpha_2 rather than their difference). This links to the analogous term in uwtend2 a few lines before. The pressure term that uses the difference of these parameters are the ones containing v2 and u2 respectively. Equations (12) and (19) of Overleaf document state the general formulation of these pressure terms, so if there is a mistake we should figure out where that is and fix it in those equations. |
I was referring to equations 1a and 1b of Canuto 2007. I will check overleaf with the general formulation. |
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).
The text was updated successfully, but these errors were encountered: