-
Notifications
You must be signed in to change notification settings - Fork 117
Improved blending of 1D and 3D turbulence schemes #752
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
base: main
Are you sure you want to change the base?
Changes from all commits
878b733
ab43d37
3a5cf6e
3874e79
270f63c
ab7db55
813ed93
da7a76a
60dcdc6
ffb8522
c6fdd1f
0fb3ab2
d0f6bcd
b44202e
0ae3208
f625c55
ca0fc68
883e980
5c1d525
33b4eb0
60a23e8
1d41171
f0ca8a8
b8fe776
a8deda2
942c88e
f7eda4e
ed48fbf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| [namelist:mixing] | ||
| cap_blended_ml=.true. | ||
| method='blend_cth_shcu_only' | ||
| shallow_cu_maxtop=3000.0 | ||
| smagorinsky=.true. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| Inner product checksum rho = 4839977E | ||
| Inner product checksum theta = 5135493C | ||
| Inner product checksum u = 612F4556 | ||
| Inner product checksum mr1 = 4090F41B | ||
| Inner product checksum mr2 = 35AC7EDC | ||
| Inner product checksum mr3 = 2FA559EC | ||
| Inner product checksum mr4 = 33F4FDAE | ||
| Inner product checksum mr5 = BEDF860 | ||
| Inner product checksum mr6 = 0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| Inner product checksum rho = 483997BF | ||
| Inner product checksum theta = 5135495F | ||
| Inner product checksum u = 612F491D | ||
| Inner product checksum mr1 = 4090F962 | ||
| Inner product checksum mr2 = 35B6E523 | ||
| Inner product checksum mr3 = 2FA5A395 | ||
| Inner product checksum mr4 = 33F4FE66 | ||
| Inner product checksum mr5 = BECFC40 | ||
| Inner product checksum mr6 = 0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,8 +28,6 @@ def upgrade(self, config, meta_config=None): | |
| # Add settings | ||
| return config, self.reports | ||
| """ | ||
|
|
||
|
|
||
| class vn32_t634(MacroUpgrade): | ||
| """Upgrade macro for ticket #634 by Ian Boutle.""" | ||
|
|
||
|
|
@@ -61,3 +59,18 @@ def upgrade(self, config, meta_config=None): | |
| self.add_setting(config, ["namelist:mixing", "fullstress"], ".false.") | ||
|
|
||
| return config, self.reports | ||
|
|
||
|
|
||
| class vn32_t752(MacroUpgrade): | ||
| # Upgrade macro for #752 by Adrian Lock | ||
|
|
||
| BEFORE_TAG = "vn3.2_t479" | ||
| AFTER_TAG = "vn3.2_t752" | ||
|
|
||
| def upgrade(self, config, meta_config=None): | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you need a second
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh yes, good spot, thanks. Bizarrely, I'd also left out the |
||
| # Add settings | ||
| self.add_setting( | ||
| config, ["namelist:mixing", "cap_blended_ml"], ".false.") | ||
| self.add_setting( | ||
| config, ["namelist:mixing", "shallow_cu_maxtop"], "3000.0") | ||
| return config, self.reports | ||
Uh oh!
There was an error while loading. Please reload this page.