Directory CCA/Components/Wasatch/transport/

Total Files:
7
Deleted Files:
2
Lines of Code:
60

[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 58 (100.0%) 2240 (100.0%) 38.6
jsutherland 46 (79.3%) 1645 (73.4%) 35.7
tsaad 12 (20.7%) 595 (26.6%) 49.5

Most Recent Commits

tsaad 2010-12-03 16:48 Rev.: 46549

TSAAD:
1. Added boundary condition treatment for Wasatch. This required modifying the equation adaptors to store the xml input information about each trasnport equation.
2. Added a test case for boundary conditions.
NOTE: due to issues with extracells and boundarylayer cells, this code is NOT functional yet.

15 lines of code changed in 4 files:

  • CCA/Components/Wasatch/transport: ParseEquation.cc (new), ParseEquation.h (+5 -1)
jsutherland 2010-12-02 20:23 Rev.: 46538

Move a bunch of stuff from header files to .cc files, and use explicit template instantiation.

This should help speed up compilation times and may reduce code bloat a bit.

380 lines of code changed in 5 files:

  • CCA/Components/Wasatch/transport: ScalarTransportEquation.cc (new 372), ScalarTransportEquation.h (+7 -326), sub.mk (+1)
jsutherland 2010-10-28 12:41 Rev.: 46399

First hack at getting memory window support from SpatialOps to propagate into Wasatch.
Still need to get the configure system up to date to correctly deal with requirements from SpatialOps

3 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ParseEquation.cc (+3 -3)
jsutherland 2010-10-12 15:37 Rev.: 46358

Add the ability to shove source terms on transport equations. This will help with MMS in particular.

8 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ScalarTransportEquation.h (+8 -9)
jsutherland 2010-10-07 15:17 Rev.: 46331

Quiet a few more warnings on Linux.

11 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ScalarTransportEquation.h (+11 -6)
jsutherland 2010-10-07 13:54 Rev.: 46329

Move some things out of the ParseEquation.h header and into the implementation file.

35 lines of code changed in 2 files:

  • CCA/Components/Wasatch/transport: ParseEquation.cc (+31 -5), ParseEquation.h (+4 -23)
jsutherland 2010-10-07 10:36 Rev.: 46323

- fix some more things that broke in my recent failed merge.

59 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ScalarTransportEquation.h (+59 -21)
jsutherland 2010-10-07 08:31 Rev.: 46321

Merge branch 'cleanup'

29 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ScalarTransportEquation.h (+29 -61)
tsaad 2010-10-06 15:23 Rev.: 46318

In this commit:
1. Debugged UpwindInterpolant.
2. Added support for Central differencing for convection.
3. Added convection-test.ups file. This is NOT a comprehensive test yet.
4. Modified ConvectiveFlux.h by adding inhertience for upwind type interpolants.

63 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ScalarTransportEquation.h (+63 -22)
jsutherland 2010-09-28 12:53 Rev.: 46277

Fix parser problem finding multiple blocks for scalar transport equation diffusive convective and source terms

3 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ScalarTransportEquation.h (+3 -3)
tsaad 2010-09-24 15:37 Rev.: 46262

- Added convective flux expression.
- Modified wasatch spec file for convective flux expression.
- Added Upwind interpolation operator.
- Modified Operators.cc for upwind interpolant.
- Added test file: convection-test.ups.
- NOTE: THE UPWIND INTERPOLATION IS STILL BEING DEBUGGED.

88 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ScalarTransportEquation.h (+88 -2)
tsaad 2010-09-24 14:47 Rev.: 46261

- Added support for expressions: SineFunction, GaussianFunction, and DoubleTanhFunction.
- Modified UPS specification file to support tags related to the aforementioned functions in Wasatch.
- Corrected a few typos in the comments and output messages.

1 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ParseEquation.cc (+1 -1)
jsutherland 2010-09-21 16:37 Rev.: 46251

Change "new" to "scinew" to help track memory issues.

21 lines of code changed in 4 files:

  • CCA/Components/Wasatch/transport: ParseEquation.cc (+10 -10), ScalarTransportEquation.h (+7 -7), TemperatureTransportEquation.cc (new)
jsutherland 2010-09-20 19:41 Rev.: 46242

First cut at getting coordinates into expression graphs in uintah.

The idea is that we calculate the fields once at initialization and then use them wherever needed by wrapping them in a placeholder expression. However, we actually introduce a new expression here, Coordinate, which derives from Expr::PlaceHolder. When a Coordinate expression is constructed (e.g. loaded onto an expression graph) then it will trigger Wasatch to create an expression that will populate the coordinate during initialization.

Note that this is still untested. Tony, that is up to you!

3 lines of code changed in 3 files:

  • CCA/Components/Wasatch/transport: ParseEquation.cc (+2 -2), TemperatureTransportEquation.h (+1 -1)
jsutherland 2010-09-16 18:26 Rev.: 46209

- update the state table for the TabProps test case
- fix a minor bug introduced in my last big checkin: forgot to make a change in the parser corresponding to the xml spec change.
- add some documentation to the FieldTypes enum and get_field_type function
- Fix TabPropsInterface.ups to conform to new input spec.

1 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ParseEquation.cc (+1 -1)
jsutherland 2010-09-11 16:43 Rev.: 46189

Update Doxygen support in Wasatch. Created several modules/groups.

10 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ParseEquation.h (+10 -1)
jsutherland 2010-09-09 21:50 Rev.: 46182

- Make the constant diffusivity specification optional not required. This was a bug in the wasatch xml spec.

- Revise the TabProps interface. There were several problems with the old user interface (parser).

- Rework the property parser a bit for TabProps. This makes contexts more consistent.

- Update an input file. We really need to get a transport equation solved (i.e. mixture fraction) and then extract transport coefficients or something from a table. This will help get a robust test case for the tabular property stuff.

21 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ScalarTransportEquation.h (+21 -14)
jsutherland 2010-09-09 15:52 Rev.: 46173

fix a problem with Tony's last commit and remove two dead files

0 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ScalarTransportEquation.cc (del)
tsaad 2010-09-09 15:40 Rev.: 46172

Made the following modifications:
1. Converted ScalarTransportEquation to template form so that it can be used for both staggered and non-staggered scalar fields.
2. Added proper functionality to the Wasatch problem specification to accommodate for staggered scalar transport.
3. Converted ScalarRHS to template form so that it conforms to other expressions that we have (i.e. DiffusiveFlux …).
4. Fixed wasatch input files.

428 lines of code changed in 5 files:

  • CCA/Components/Wasatch/transport: ParseEquation.cc (+53 -14), ScalarTransportEquation.cc (new 179), ScalarTransportEquation.h (+191 -11), TemperatureTransportEquation.cc (+5 -5), sub.mk (-1)
jsutherland 2010-09-07 12:40 Rev.: 46158

Clean up a few things in Wasatch that were breaking - probably due to some recent commits that cleaned up some header files in the framework.

1 lines of code changed in 1 file:

  • CCA/Components/Wasatch/transport: ScalarTransportEquation.cc (+1 -1)

(5 more)

Generated by StatSVN 0.4.0