Finished DSMC code initial layout and test solver - both compile. Using lagrangian/dsmc local version of WallInteractionModel until requirements stabilise. Removed use of InjectionModel - not suitable, designed for continuum cases, requires single constProps from trackData - multispecies DSMC requires a List of constantProperties, one for each species.

This commit is contained in:
graham
2009-02-24 18:10:26 +00:00
parent 9cea1db461
commit 5fca1e879d
6 changed files with 134 additions and 105 deletions

View File

@ -1,10 +1,12 @@
EXE_INC = \
-I$(LIB_SRC)/finiteVolume/lnInclude \
-I$(LIB_SRC)/lagrangian/basic/lnInclude \
-I$(LIB_SRC)/lagrangian/dsmc/lnInclude \
-I$(LIB_SRC)/meshTools/lnInclude
EXE_LIBS = \
-lmeshTools \
-lfiniteVolume \
-llagrangian
-llagrangian \
-ldsmc

View File

@ -1,4 +1,4 @@
Info<< "Constructing dsmcCloud " << endl;
dsmcCloud dsmc(mesh);
dsmcCloud dsmc("dsmc", mesh);