Directory CCA/Components/Wasatch/transport/

Directory Deleted:
2014-06-12 12:07
Total Files:
0
Deleted Files:
15
Lines of Code:
0

[root]/CCA/Components/Wasatch/transport

Lines of Code

CCA/Components/Wasatch/transport/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 127 (100.0%) 6315 (100.0%) 49.7
jsutherland 23 (18.1%) 5380 (85.2%) 233.9
tsaad 87 (68.5%) 875 (13.9%) 10.0
amir 2 (1.6%) 60 (1.0%) 30.0
dav 15 (11.8%) 0 (0.0%) 0.0

Most Recent Commits

dav 2014-06-12 12:07 Rev.: 51975

There are currently two transport directorys: 'Transport' and 'transport' in the SVN repository. I am removing the lowercase one. I will then fix everything to compile correctly.

0 lines of code changed in 15 files:

  • CCA/Components/Wasatch/transport: EnthalpyTransportEquation.cc (del), EnthalpyTransportEquation.h (del), MomentTransportEquation.cc (del), MomentTransportEquation.h (del), MomentumTransportEquation.cc (del), MomentumTransportEquation.h (del), ParseEquation.cc (del), ParseEquation.h (del), ScalabilityTestTransportEquation.cc (del), ScalabilityTestTransportEquation.h (del), ScalarTransportEquation.cc (del), ScalarTransportEquation.h (del), TransportEquation.cc (del), TransportEquation.h (del), sub.mk (del)
jsutherland 2014-06-11 20:38 Rev.: 51964

Revert "Capitalize the transport directory (e.g. Transport) to be consistent with the rest of Wasatch naming convention."

This reverts commit 90963897ecbf8a340efcce9305eddfc3eb8d3fb5.

5304 lines of code changed in 15 files:

  • CCA/Components/Wasatch/transport: EnthalpyTransportEquation.cc (new 205), EnthalpyTransportEquation.h (new), MomentTransportEquation.cc (new 636), MomentTransportEquation.h (new 142), MomentumTransportEquation.cc (new 1275), MomentumTransportEquation.h (new 152), ParseEquation.cc (new 1182), ParseEquation.h (new 287), ScalabilityTestTransportEquation.cc (new 281), ScalabilityTestTransportEquation.h (new 150), ScalarTransportEquation.cc (new 462), ScalarTransportEquation.h (new 208), TransportEquation.cc (new 108), TransportEquation.h (new 216), sub.mk (new)
tsaad 2014-06-11 10:23 Rev.: 51950

Capitalize the transport directory (e.g. Transport) to be consistent with the rest of Wasatch naming convention.

0 lines of code changed in 13 files:

  • CCA/Components/Wasatch/transport: EnthalpyTransportEquation.cc (del), MomentTransportEquation.cc (del), MomentTransportEquation.h (del), MomentumTransportEquation.cc (del), MomentumTransportEquation.h (del), ParseEquation.cc (del), ParseEquation.h (del), ScalabilityTestTransportEquation.cc (del), ScalabilityTestTransportEquation.h (del), ScalarTransportEquation.cc (del), ScalarTransportEquation.h (del), TransportEquation.cc (del), TransportEquation.h (del)
amir 2014-06-05 00:57 Rev.: 51936

Adding a special outflow boundary condition for variable density cases. Adding a new dynamic model for alpha in the pressure projection algorithm.

60 lines of code changed in 2 files:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (new 18), ParseEquation.cc (new 42)
jsutherland 2014-06-03 16:13 Rev.: 51927

Eliminate obsolete header file.

0 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (-1)
jsutherland 2014-06-03 16:13 Rev.: 51926

clean up a few warnings.

10 lines of code changed in 2 files:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (-2), ScalarTransportEquation.cc (new 10)
tsaad 2014-05-22 12:45 Rev.: 51863

minor cleanup

2 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+2 -3)
tsaad 2014-05-09 12:45 Rev.: 51825

Add a new interface to the TimeAdvance expression that allows us to use it with estimators (i.e. specify phi_old instead of inferring it directly). Cleanup the TimeStepper by removing some obsolete sets. Rename a function.

10 lines of code changed in 2 files:

  • CCA/Components/Wasatch/transport: ParseEquation.cc (+5 -5), ParseEquation.h (new 5)
tsaad 2014-05-08 10:14 Rev.: 51819

disallow specification of BCs on velocity estimates. Those are automatically inferred from the velocity field

14 lines of code changed in 2 files:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+9), ScalarTransportEquation.cc (+5 -5)
tsaad 2014-05-08 08:51 Rev.: 51817

Reduce the required specification for velocity and momentum boundary conditions on Velocity boundaries: only specify non-zero velocity and momentum components. if a velocity/momentum component is not specified in the input file, then set it to zero. This will reduce input file clutter by up to 66%. Also add a python script that will process input files for you to remove zero velocity and momentum BCs from your input files.

10 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+10)
tsaad 2014-05-08 06:40 Rev.: 51815

This is a significant refactor in Wasatch which introduces an Expression-based approach for time integration. This results in a cleaner implementation of our timeadvance task by placing it as a node on our DAG graphs. This also results in less Uintah tasks and will make it easy to apply complex boundary conditions on conserved variables based on primitive variables. For those who are using Wasatch, you will need to modify your input files. A new expression state has been introduced: STATE_DYNAMIC. The distinction is now as follows: STATE_N always points to the old datawarehouse, STATE_NONE always points to the new dw, and STATE_DYNAMIC will switch between old and new based on the Runge-Kutta stage. Please update your input files: all initial conditions should now be STATE_DYNAMIC. All source terms that depend on a transported scalar should also use STATE_DYNAMIC for that scalar.

23 lines of code changed in 6 files:

  • CCA/Components/Wasatch/transport: MomentTransportEquation.cc (new 4), MomentumTransportEquation.cc (+2 -3), ParseEquation.cc (+3 -4), ScalabilityTestTransportEquation.cc (new 3), ScalarTransportEquation.cc (+10 -10), TransportEquation.cc (new 1)
tsaad 2014-05-01 21:45 Rev.: 51800

change the scope of the TurbulenceModelsNames for more enum safety.

8 lines of code changed in 3 files:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+5 -5), ParseEquation.cc (+2 -3), ScalarTransportEquation.cc (+1 -1)
tsaad 2014-05-01 17:26 Rev.: 51799

allow specification of the variable density model for drhodt through the input file. This will prevent errors when running the MMS cases where one may forget changing the model for alpha in the source terms. This also sets the stage for automated verification and convergence of the analytical and MMS solutions.

43 lines of code changed in 4 files:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+2 -1), MomentumTransportEquation.h (new 3), ParseEquation.cc (+35 -16), ParseEquation.h (+3 -1)
tsaad 2014-04-30 14:56 Rev.: 51792

update the outflow and open boundary conditions to use momentum instead of velocity. this should help with variable density flows.

5 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+5 -6)
tsaad 2014-04-29 12:54 Rev.: 51785

Here's a clean fix for propagating dependencies introduced by BC expressions. This commit will make new dependencies visible across all patches including those that do not have physical boundaries.

86 lines of code changed in 2 files:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+45 -18), ScalarTransportEquation.cc (+41 -9)
tsaad 2014-04-26 13:23 Rev.: 51779

forgot to commit the bc specification for OPEN boundaries. See my previous commit.

21 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+21)
tsaad 2014-04-26 13:17 Rev.: 51778

Simplify the specification of velocity boundary conditions for variable density problems. Enforce BCCopier to set values @ staggered boundaries instead of only in extra cells.

77 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+77 -5)
tsaad 2014-04-26 10:52 Rev.: 51775

rename the functions that setup and apply boundary conditions to something more meaningful

27 lines of code changed in 9 files:

  • CCA/Components/Wasatch/transport: MomentTransportEquation.cc (+2 -2), MomentTransportEquation.h (new 3), MomentumTransportEquation.cc (+5 -5), MomentumTransportEquation.h (+3 -3), ScalabilityTestTransportEquation.cc (+2 -2), ScalabilityTestTransportEquation.h (new 3), ScalarTransportEquation.cc (+3 -3), ScalarTransportEquation.h (new 3), TransportEquation.h (new 3)
tsaad 2014-04-18 08:45 Rev.: 51758

More simplications to the scalartransport interface:
1. rename ConvectiveFluxExpression and DiffusiveFluxExpression to ConvectiveFlux and DiffusiveFlux, respectively
2. Allow the specification of DiffusiveFlux expressions in 2D and 3D in a single XML block

123 lines of code changed in 5 files:

  • CCA/Components/Wasatch/transport: EnthalpyTransportEquation.cc (new 8), MomentTransportEquation.cc (+4 -4), ParseEquation.cc (+101 -58), ParseEquation.h (+2 -2), ScalarTransportEquation.cc (+8 -8)
tsaad 2014-04-16 08:50 Rev.: 51746

simplify the specification of body forces and source terms by using an attribute for the direction instead of a dedicated xml block.

2 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ParseEquation.cc (+2 -2)
tsaad 2014-04-14 19:58 Rev.: 51739

1. Consolidate DiffusiveFlux and ConvetiveFlux spec using common tags.
2. Use attributes to specify direction, diffusion coefficient, and flux limiter instead of XML blocks. This will SIGNIFICANTLY reduce input file clutter and is much cleaner.
NOTE: All Wasatch developers and users, please update your input files! You can use the attached python script 'update-flux-expressions.py' to do that.

8 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ParseEquation.cc (+8 -8)
tsaad 2014-04-07 12:01 Rev.: 51707

Set Neumann conditions on velocity and momentum at Outflow and Open boundaries. This will pin the values of those quantities in extracells so that we don't run into issues with the filter. This will break the mini-boiler case.

18 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+18 -15)
tsaad 2014-04-02 15:17 Rev.: 51702

rename PressuBC to OpenBC and cleanup a few nametags

12 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+12 -12)
tsaad 2014-03-12 23:39 Rev.: 51633

enforce scalar_rhs = 0 in extra cells to avoid nans there which eventually mess up the visualization.

58 lines of code changed in 2 files:

  • CCA/Components/Wasatch/transport: ScalarTransportEquation.cc (+57 -1), ScalarTransportEquation.h (+1 -1)
tsaad 2014-03-10 17:11 Rev.: 51622

use problemSpec::get instead of getWithDefault for one of the TransportEquation attribute (e.g. form). This was a bug that will show up when restarting.

2 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ScalarTransportEquation.cc (+2 -2)
tsaad 2014-02-27 20:29 Rev.: 51577

remove a dynamic cast of solverparameters in Wasatch thanks to John's recent commit.

1 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+1 -2)
tsaad 2014-02-26 11:36 Rev.: 51570

Simplify the specifiicaiton of strong/weak forms of scalar transport equations. update all input files. add checkpoints to coal-boiler test.

4 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ScalarTransportEquation.cc (+4 -4)
tsaad 2014-02-21 17:08 Rev.: 51559

Rename timestep to dt since this is used to refer to the timestep size. add timestep (the timestep counter here) information to the SetCurrentTime expression.

6 lines of code changed in 2 files:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+2 -2), ParseEquation.cc (+4 -4)
tsaad 2014-02-21 13:49 Rev.: 51552

add a method to the HypreSolver2Parameters to set the setupFrequency. This will allow the component to control that frequency instead of the user. We should eventually rip it out from the solver-input spec.

18 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+18 -2)
tsaad 2014-02-21 13:49 Rev.: 51551

remove un-necessary boundary conditions (Neumann on velocity/momentum) that is being applied on the velocity/momentum normal to Outflow/Open boundaries

11 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+11 -10)
tsaad 2014-02-04 14:32 Rev.: 51525

more nomenclature changes to the variable density expressions

20 lines of code changed in 4 files:

  • CCA/Components/Wasatch/transport: EnthalpyTransportEquation.cc (+9 -8), MomentumTransportEquation.cc (+4 -3), ParseEquation.cc (+4 -2), ScalabilityTestTransportEquation.cc (+3 -1)
tsaad 2014-02-03 14:18 Rev.: 51524

Fix a bad little bug when applying Neumann BCs on the pressure. Reorder some parsing of the varden MMS and fix some input files.

2 lines of code changed in 2 files:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+1), ParseEquation.cc (+1)
tsaad 2014-02-03 10:53 Rev.: 51522

change variable density nomenclature on predictors from var_* to var*, var_rhs_* to var*_rhs etc… This will break all varden RT due to varlabel name changes - uda directories can't be compared.

23 lines of code changed in 3 files:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+9 -9), ParseEquation.cc (+9 -9), ScalarTransportEquation.cc (+5 -5)
tsaad 2014-01-31 12:14 Rev.: 51521

add another 2D variable density MMS along with its boundary conditions. there is still an issue with one of the boundary conditions that I am working on figuring out.

71 lines of code changed in 4 files:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+12 -6), ParseEquation.cc (+40), ParseEquation.h (+16), ScalarTransportEquation.cc (+3 -2)
jsutherland 2014-01-24 13:47 Rev.: 51505

Only include fields related to variable density in the pressure source term if we have a variable density calculation.

11 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+11 -9)
tsaad 2014-01-23 14:42 Rev.: 51492

set staggered Dirichlet BCs on extra cells. This should resolve the confusion that came up when looking at the linear, parabolic, and powerlaw BCs. Also add a density expression to the initialization graph when the density is constant. This should resolve issues when setting velocity boundary conditions on constant density problems.

2 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: MomentumTransportEquation.cc (+2 -2)
jsutherland 2014-01-21 07:57 Rev.: 51481

Fix the failing wasatch test. I think that this was inadvertently broken last week when Tony made a seemingly innocuous commit.

14 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ScalabilityTestTransportEquation.cc (+14 -3)
tsaad 2014-01-17 13:26 Rev.: 51476

Fix logical bug when parsing the scalability test. Thanks to Abhishek for catching this.

11 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ScalabilityTestTransportEquation.cc (+11 -3)
tsaad 2014-01-17 10:50 Rev.: 51473

Rename the 1D varden MMS expressions to be more descriptive and concise. This will break the RT due to a change in one of the variable names that is being saved.

15 lines of code changed in 2 files:

  • CCA/Components/Wasatch/transport: ParseEquation.cc (+14 -14), ParseEquation.h (+1 -1)
tsaad 2014-01-17 10:07 Rev.: 51472

Use uniform naming for MMS source terms

17 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ParseEquation.cc (+17 -23)

(4 more)

Generated by StatSVN 0.7.0