Skip to content
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

F/rayleigh damping #726

Draft
wants to merge 51 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
aed868f
First commit of a new branch for getting upgraded ABL wall BC into ma…
mchurchf May 7, 2020
ce8f4d4
Updating NaluParsing.
mchurchf May 7, 2020
2bb9346
The beginnings of the ABL wall fluxes computation in ngp_algorithms.
mchurchf May 8, 2020
b30f32d
Trying to get the ABLWallFluxes load method to compile.
mchurchf May 8, 2020
f2fe775
Basic framework for new ABL BC in place.
May 13, 2020
ab3af32
Connecting EnthalpyEquationSystem with the ABL wall model.
May 15, 2020
6f25cc9
Progress commit. Load function complete, fixed small issue in Scalar…
May 19, 2020
fcfabfb
Fixing a problem with the psi_h function for unstable conditions.
Jun 2, 2020
2194613
Adding a checkpoint commit for this upgraded wall bc.
Jun 2, 2020
1ae3cd3
Checkpoint commit.
Jun 12, 2020
dbe8b90
add in a rayleigh damping option
rcknaus Jun 19, 2020
f998eed
This ties all components together to do wall-modeling outlined by Bas…
Jun 22, 2020
6a24854
Merging with exawind/master
Jun 22, 2020
7b84771
Updating the ablNeutralEdge input file to reflect new BC input needs.
Jun 22, 2020
e50c065
Fixed a sign error on the applied wall shear stresses.
Jun 24, 2020
8c50b42
Fixes for the flux algorithms 1 and 2 to include L calculation each i…
Jun 25, 2020
a134dd0
Added logic to deal with zero divided by zero fluctuation stress/flux…
Jun 25, 2020
a9d758f
Merge remote-tracking branch 'exawind/master' into f/ABLWallBCUpgrade
Jun 25, 2020
85c3367
Merged with current state of exawind master.
Sep 4, 2020
5b02a36
Merge remote-tracking branch 'exawind/master' into f/ABLWallBCUpgrade
Sep 8, 2020
82c2e5a
Merge remote-tracking branch 'exawind/master' into f/ABLWallBCUpgrade
Sep 17, 2020
f5e40c2
Updated to give the option to use reference or surface temperature in…
Sep 21, 2020
1d6e196
Updating regression tests.
Sep 21, 2020
85221b9
Merge remote-tracking branch 'exawind/master' into f/ABLWallBCUpgrade
Sep 21, 2020
01e9efe
Fixed a syntax issue in NaluParsing.h
Sep 28, 2020
77d075e
Merge remote-tracking branch 'exawind/master' into f/ABLWallBCUpgrade
Sep 28, 2020
a776d1f
Updated the gold value of wall distance to be used by wall functions …
Sep 28, 2020
7a2794c
Update include/edge_kernels/MomentumABLWallShearStressEdgeKernel.h
mchurchf Oct 1, 2020
3714784
Update include/ngp_algorithms/WallFricVelAlgDriver.h
mchurchf Oct 1, 2020
69239ef
Update include/wind_energy/MoninObukhov.h
mchurchf Oct 1, 2020
2d1532b
Update src/ngp_algorithms/ABLWallFluxesAlg.C
mchurchf Oct 1, 2020
14f49a1
Update src/ngp_algorithms/ABLWallFluxesAlg.C
mchurchf Oct 1, 2020
b8d4ef5
Update src/ngp_algorithms/ABLWallFluxesAlg.C
mchurchf Oct 1, 2020
eb8a34f
Reduced redundant code by eliminating the two flux/stress functions a…
Oct 9, 2020
e57e892
Adding some Doxygen style comments to explain the code.
Oct 9, 2020
3fa16f4
Update to make the new flux/stress BC work for both element and edge …
Oct 9, 2020
4abd573
Small typo fix.
Oct 9, 2020
6e04ca0
Update src/LowMachEquationSystem.C
mchurchf Oct 9, 2020
8d2acc4
Update src/kernel/ScalarFaceFluxBCElemKernel.C
mchurchf Oct 9, 2020
199302d
Update src/ngp_algorithms/WallFuncGeometryAlg.C
mchurchf Oct 9, 2020
aab10b6
Update src/wind_energy/BdyLayerStatistics.C
mchurchf Oct 9, 2020
6fd4cbe
Update to WallFuncGeometryAlg to make distance from wall of velocity …
Oct 13, 2020
60277fd
Merging with changes made through github website pull request suggest…
Oct 13, 2020
c41ab95
Merging with current exawind/master
Oct 13, 2020
1321fc6
Merging Robert's Rayleigh damping with the updated lower BC code, whi…
Oct 13, 2020
f9a737b
Initial clean up to better match main exawind master.
Oct 14, 2020
52674bf
Small updates to better match upgraded ABL surface BC branch and master.
Oct 14, 2020
1d82f96
Clean up to integrate Robert's gravity wave implementation into new f…
Oct 15, 2020
6a18867
Generalized the capping inversion aux function to take user inputs in…
Oct 15, 2020
6b9c08c
Commit for updates to mesh
Oct 15, 2020
6bf95e9
Removing Rayleigh damping from ablNeutralEdge test case. Will add a …
Oct 15, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/ngp_algorithms/ABLWallFluxesAlg.C
Co-authored-by: Shreyas Ananthan <[email protected]>
mchurchf and sayerhs authored Oct 1, 2020
commit b8d4ef534f757bae0a24ca6a3bca11d00302a834
6 changes: 1 addition & 5 deletions src/ngp_algorithms/ABLWallFluxesAlg.C
Original file line number Diff line number Diff line change
@@ -387,11 +387,7 @@ void ABLWallFluxesAlg<BcAlgTraits>::execute()

DblType MoengFactor = (fluctuationModel_ == "Moeng") ? 1.0 : 0.0;

DblType fluctuatingTempRef = currSurfaceTemperature;
if (fluctuatingTempRef_ == "reference")
{
fluctuatingTempRef = Tref_;
}
DblType fluctuatingTempRef = (fluctuatingTemRef_ == "reference") ? Tref_ : currSurfaceTemperature;

const double eps = 1.0e-8;
const DoubleType Lmax = 1.0e8;