├── .gitignore ├── LICENSE ├── README.md ├── demo └── cavity0.1 │ ├── 0 │ ├── T │ ├── U │ └── rho │ ├── 0.0339621151 │ ├── T │ ├── U │ ├── q │ ├── qSurf │ ├── qWall │ ├── rho │ ├── stressSurf │ ├── stressWall │ └── uniform │ │ └── time │ ├── constant │ ├── DVMProperties │ ├── polyMesh │ │ ├── blockMeshDict │ │ ├── boundary │ │ ├── faces │ │ ├── neighbour │ │ ├── owner │ │ └── points │ └── vMesh │ │ ├── boundary │ │ ├── cellZones │ │ ├── faceZones │ │ ├── faces │ │ ├── neighbour │ │ ├── owner │ │ └── points │ ├── multidecompose.py │ ├── para.py │ └── system │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution ├── doc ├── Makefile ├── appendix.tex ├── biblio.tex ├── changelog.tex ├── contrib.tex ├── demo.tex ├── dugksFoam.pdf ├── dugksFoam.tex ├── fancyhea.sty ├── img │ ├── U.png │ ├── ldc-eps-converted-to.pdf │ ├── ldc.eps │ ├── ldc.pdf │ └── temperature.png ├── installation.tex ├── lshort-base.tex ├── lshort.sty ├── mylayout.sty ├── overview.tex ├── preamble.tex ├── title.tex └── usage.tex ├── inc └── FoamDefs │ ├── 6 │ └── foam_defs.h │ ├── 2.4.0 │ └── foam_defs.h │ ├── 3.0.0 │ └── foam_defs.h │ ├── 3.0.1 │ └── foam_defs.h │ ├── 4.0 │ └── foam_defs.h │ ├── 4.1 │ └── foam_defs.h │ ├── 5.0 │ └── foam_defs.h │ └── foam_defs.h ├── multidecompose.py └── src ├── Allwclean ├── Allwmake ├── CourantNo.H ├── Make ├── files └── options ├── PatchMeshToolIssue ├── createFields.H ├── dugksFoam.C ├── fvDVM ├── BCs │ ├── DVMsymmetryFvsPatchField │ │ ├── DVMsymmetryFvsPatchField.C │ │ ├── DVMsymmetryFvsPatchField.H │ │ ├── DVMsymmetryFvsPatchFields.C │ │ ├── DVMsymmetryFvsPatchFields.H │ │ └── DVMsymmetryFvsPatchFieldsFwd.H │ ├── calculatedMaxwellFvPatchField │ │ ├── calculatedMaxwellFvPatchField.C │ │ ├── calculatedMaxwellFvPatchField.H │ │ ├── calculatedMaxwellFvPatchFields.C │ │ ├── calculatedMaxwellFvPatchFields.H │ │ └── calculatedMaxwellFvPatchFieldsFwd.H │ ├── farFieldFvPatchField │ │ ├── farFieldFvPatchField.C │ │ ├── farFieldFvPatchField.H │ │ ├── farFieldFvPatchFields.C │ │ ├── farFieldFvPatchFields.H │ │ └── farFieldFvPatchFieldsFwd.H │ ├── farFieldFvsPatchField │ │ ├── farFieldFvsPatchField.C │ │ ├── farFieldFvsPatchField.H │ │ ├── farFieldFvsPatchFields.C │ │ ├── farFieldFvsPatchFields.H │ │ └── farFieldFvsPatchFieldsFwd.H │ ├── maxwellWallFvsPatchField │ │ ├── maxwellWallFvsPatchField.C │ │ ├── maxwellWallFvsPatchField.H │ │ ├── maxwellWallFvsPatchFields.C │ │ ├── maxwellWallFvsPatchFields.H │ │ └── maxwellWallFvsPatchFieldsFwd.H │ ├── mixedFvsPatchField │ │ ├── mixedFvsPatchField.C │ │ ├── mixedFvsPatchField.H │ │ ├── mixedFvsPatchFields.C │ │ ├── mixedFvsPatchFields.H │ │ └── mixedFvsPatchFieldsFwd.H │ ├── pressureInFvPatchField │ │ ├── pressureInFvPatchField.C │ │ ├── pressureInFvPatchField.H │ │ ├── pressureInFvPatchFields.C │ │ ├── pressureInFvPatchFields.H │ │ └── pressureInFvPatchFieldsFwd.H │ ├── pressureOutFvPatchField │ │ ├── pressureOutFvPatchField.C │ │ ├── pressureOutFvPatchField.H │ │ ├── pressureOutFvPatchFields.C │ │ ├── pressureOutFvPatchFields.H │ │ └── pressureOutFvPatchFieldsFwd.H │ ├── symmetryModFvPatchField │ │ ├── symmetryModFvPatchField.C │ │ ├── symmetryModFvPatchField.H │ │ ├── symmetryModFvPatchFields.C │ │ ├── symmetryModFvPatchFields.H │ │ └── symmetryModFvPatchFieldsFwd.H │ └── zeroGradientFvsPatchField │ │ ├── zeroGradientFvsPatchField.C │ │ ├── zeroGradientFvsPatchField.H │ │ ├── zeroGradientFvsPatchFields.C │ │ ├── zeroGradientFvsPatchFields.H │ │ └── zeroGradientFvsPatchFieldsFwd.H ├── Make │ ├── files │ └── options ├── Venkatakrishnan │ ├── VenkatakrishnanLimitedGrad │ │ ├── VenkatakrishnanLimitedGrad.H │ │ └── VenkatakrishnanLimitedGrads.C │ └── VenkatakrishnanSlopeMulti │ │ └── VenkatakrishnanSlopeMulti.C ├── discreteVelocity │ ├── discreteVelocity.C │ ├── discreteVelocity.H │ └── discreteVelocityI.H ├── fieldMPIreducer │ ├── fieldMPIreducer.C │ ├── fieldMPIreducer.H │ └── fieldMPIreducerI.H ├── fvDVM │ ├── fvDVM │ ├── fvDVM.C │ ├── fvDVM.H │ └── fvDVMI.H ├── pwlInterp2 │ ├── pwlInterp2.C │ └── pwlInterp2_test.C └── zeroBoundaryGrad │ ├── files │ ├── invDistLeastSquaresVectors.C │ ├── options │ ├── unweightedLeastSquaresVectors.C │ ├── zeroBoundaryGrad.C │ ├── zeroBoundaryGrad.H │ ├── zeroBoundaryGrads.C │ ├── zeroBoundaryVectors.C │ └── zeroBoundaryVectors.H ├── readTimeControlsExplicit.H ├── scripts ├── plotLog.sh └── setDV.py └── setDeltaTvar.H /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/README.md -------------------------------------------------------------------------------- /demo/cavity0.1/0.0339621151/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/0.0339621151/T -------------------------------------------------------------------------------- /demo/cavity0.1/0.0339621151/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/0.0339621151/U -------------------------------------------------------------------------------- /demo/cavity0.1/0.0339621151/q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/0.0339621151/q -------------------------------------------------------------------------------- /demo/cavity0.1/0.0339621151/qSurf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/0.0339621151/qSurf -------------------------------------------------------------------------------- /demo/cavity0.1/0.0339621151/qWall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/0.0339621151/qWall -------------------------------------------------------------------------------- /demo/cavity0.1/0.0339621151/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/0.0339621151/rho -------------------------------------------------------------------------------- /demo/cavity0.1/0.0339621151/stressSurf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/0.0339621151/stressSurf -------------------------------------------------------------------------------- /demo/cavity0.1/0.0339621151/stressWall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/0.0339621151/stressWall -------------------------------------------------------------------------------- /demo/cavity0.1/0.0339621151/uniform/time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/0.0339621151/uniform/time -------------------------------------------------------------------------------- /demo/cavity0.1/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/0/T -------------------------------------------------------------------------------- /demo/cavity0.1/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/0/U -------------------------------------------------------------------------------- /demo/cavity0.1/0/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/0/rho -------------------------------------------------------------------------------- /demo/cavity0.1/constant/DVMProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/constant/DVMProperties -------------------------------------------------------------------------------- /demo/cavity0.1/constant/polyMesh/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/constant/polyMesh/blockMeshDict -------------------------------------------------------------------------------- /demo/cavity0.1/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/constant/polyMesh/boundary -------------------------------------------------------------------------------- /demo/cavity0.1/constant/polyMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/constant/polyMesh/faces -------------------------------------------------------------------------------- /demo/cavity0.1/constant/polyMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/constant/polyMesh/neighbour -------------------------------------------------------------------------------- /demo/cavity0.1/constant/polyMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/constant/polyMesh/owner -------------------------------------------------------------------------------- /demo/cavity0.1/constant/polyMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/constant/polyMesh/points -------------------------------------------------------------------------------- /demo/cavity0.1/constant/vMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/constant/vMesh/boundary -------------------------------------------------------------------------------- /demo/cavity0.1/constant/vMesh/cellZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/constant/vMesh/cellZones -------------------------------------------------------------------------------- /demo/cavity0.1/constant/vMesh/faceZones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/constant/vMesh/faceZones -------------------------------------------------------------------------------- /demo/cavity0.1/constant/vMesh/faces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/constant/vMesh/faces -------------------------------------------------------------------------------- /demo/cavity0.1/constant/vMesh/neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/constant/vMesh/neighbour -------------------------------------------------------------------------------- /demo/cavity0.1/constant/vMesh/owner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/constant/vMesh/owner -------------------------------------------------------------------------------- /demo/cavity0.1/constant/vMesh/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/constant/vMesh/points -------------------------------------------------------------------------------- /demo/cavity0.1/multidecompose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/multidecompose.py -------------------------------------------------------------------------------- /demo/cavity0.1/para.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/para.py -------------------------------------------------------------------------------- /demo/cavity0.1/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/system/controlDict -------------------------------------------------------------------------------- /demo/cavity0.1/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/system/decomposeParDict -------------------------------------------------------------------------------- /demo/cavity0.1/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/system/fvSchemes -------------------------------------------------------------------------------- /demo/cavity0.1/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/demo/cavity0.1/system/fvSolution -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/appendix.tex: -------------------------------------------------------------------------------- 1 | \appendix 2 | \chapter{Installing OpenFOAM} 3 | -------------------------------------------------------------------------------- /doc/biblio.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/biblio.tex -------------------------------------------------------------------------------- /doc/changelog.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/changelog.tex -------------------------------------------------------------------------------- /doc/contrib.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/contrib.tex -------------------------------------------------------------------------------- /doc/demo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/demo.tex -------------------------------------------------------------------------------- /doc/dugksFoam.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/dugksFoam.pdf -------------------------------------------------------------------------------- /doc/dugksFoam.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/dugksFoam.tex -------------------------------------------------------------------------------- /doc/fancyhea.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/fancyhea.sty -------------------------------------------------------------------------------- /doc/img/U.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/img/U.png -------------------------------------------------------------------------------- /doc/img/ldc-eps-converted-to.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/img/ldc-eps-converted-to.pdf -------------------------------------------------------------------------------- /doc/img/ldc.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/img/ldc.eps -------------------------------------------------------------------------------- /doc/img/ldc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/img/ldc.pdf -------------------------------------------------------------------------------- /doc/img/temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/img/temperature.png -------------------------------------------------------------------------------- /doc/installation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/installation.tex -------------------------------------------------------------------------------- /doc/lshort-base.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/lshort-base.tex -------------------------------------------------------------------------------- /doc/lshort.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/lshort.sty -------------------------------------------------------------------------------- /doc/mylayout.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/mylayout.sty -------------------------------------------------------------------------------- /doc/overview.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/overview.tex -------------------------------------------------------------------------------- /doc/preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/preamble.tex -------------------------------------------------------------------------------- /doc/title.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/title.tex -------------------------------------------------------------------------------- /doc/usage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/doc/usage.tex -------------------------------------------------------------------------------- /inc/FoamDefs/2.4.0/foam_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/inc/FoamDefs/2.4.0/foam_defs.h -------------------------------------------------------------------------------- /inc/FoamDefs/3.0.0/foam_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/inc/FoamDefs/3.0.0/foam_defs.h -------------------------------------------------------------------------------- /inc/FoamDefs/3.0.1/foam_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/inc/FoamDefs/3.0.1/foam_defs.h -------------------------------------------------------------------------------- /inc/FoamDefs/4.0/foam_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/inc/FoamDefs/4.0/foam_defs.h -------------------------------------------------------------------------------- /inc/FoamDefs/4.1/foam_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/inc/FoamDefs/4.1/foam_defs.h -------------------------------------------------------------------------------- /inc/FoamDefs/5.0/foam_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/inc/FoamDefs/5.0/foam_defs.h -------------------------------------------------------------------------------- /inc/FoamDefs/6/foam_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/inc/FoamDefs/6/foam_defs.h -------------------------------------------------------------------------------- /inc/FoamDefs/foam_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/inc/FoamDefs/foam_defs.h -------------------------------------------------------------------------------- /multidecompose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/multidecompose.py -------------------------------------------------------------------------------- /src/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/Allwclean -------------------------------------------------------------------------------- /src/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/Allwmake -------------------------------------------------------------------------------- /src/CourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/CourantNo.H -------------------------------------------------------------------------------- /src/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/Make/files -------------------------------------------------------------------------------- /src/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/Make/options -------------------------------------------------------------------------------- /src/PatchMeshToolIssue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/PatchMeshToolIssue -------------------------------------------------------------------------------- /src/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/createFields.H -------------------------------------------------------------------------------- /src/dugksFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/dugksFoam.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/DVMsymmetryFvsPatchField/DVMsymmetryFvsPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/DVMsymmetryFvsPatchField/DVMsymmetryFvsPatchField.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/DVMsymmetryFvsPatchField/DVMsymmetryFvsPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/DVMsymmetryFvsPatchField/DVMsymmetryFvsPatchField.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/DVMsymmetryFvsPatchField/DVMsymmetryFvsPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/DVMsymmetryFvsPatchField/DVMsymmetryFvsPatchFields.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/DVMsymmetryFvsPatchField/DVMsymmetryFvsPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/DVMsymmetryFvsPatchField/DVMsymmetryFvsPatchFields.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/DVMsymmetryFvsPatchField/DVMsymmetryFvsPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/DVMsymmetryFvsPatchField/DVMsymmetryFvsPatchFieldsFwd.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/calculatedMaxwellFvPatchField/calculatedMaxwellFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/calculatedMaxwellFvPatchField/calculatedMaxwellFvPatchField.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/calculatedMaxwellFvPatchField/calculatedMaxwellFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/calculatedMaxwellFvPatchField/calculatedMaxwellFvPatchField.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/calculatedMaxwellFvPatchField/calculatedMaxwellFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/calculatedMaxwellFvPatchField/calculatedMaxwellFvPatchFields.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/calculatedMaxwellFvPatchField/calculatedMaxwellFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/calculatedMaxwellFvPatchField/calculatedMaxwellFvPatchFields.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/calculatedMaxwellFvPatchField/calculatedMaxwellFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/calculatedMaxwellFvPatchField/calculatedMaxwellFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/farFieldFvPatchField/farFieldFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/farFieldFvPatchField/farFieldFvPatchField.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/farFieldFvPatchField/farFieldFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/farFieldFvPatchField/farFieldFvPatchField.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/farFieldFvPatchField/farFieldFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/farFieldFvPatchField/farFieldFvPatchFields.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/farFieldFvPatchField/farFieldFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/farFieldFvPatchField/farFieldFvPatchFields.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/farFieldFvPatchField/farFieldFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/farFieldFvPatchField/farFieldFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/farFieldFvsPatchField/farFieldFvsPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/farFieldFvsPatchField/farFieldFvsPatchField.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/farFieldFvsPatchField/farFieldFvsPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/farFieldFvsPatchField/farFieldFvsPatchField.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/farFieldFvsPatchField/farFieldFvsPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/farFieldFvsPatchField/farFieldFvsPatchFields.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/farFieldFvsPatchField/farFieldFvsPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/farFieldFvsPatchField/farFieldFvsPatchFields.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/farFieldFvsPatchField/farFieldFvsPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/farFieldFvsPatchField/farFieldFvsPatchFieldsFwd.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/maxwellWallFvsPatchField/maxwellWallFvsPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/maxwellWallFvsPatchField/maxwellWallFvsPatchField.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/maxwellWallFvsPatchField/maxwellWallFvsPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/maxwellWallFvsPatchField/maxwellWallFvsPatchField.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/maxwellWallFvsPatchField/maxwellWallFvsPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/maxwellWallFvsPatchField/maxwellWallFvsPatchFields.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/maxwellWallFvsPatchField/maxwellWallFvsPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/maxwellWallFvsPatchField/maxwellWallFvsPatchFields.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/maxwellWallFvsPatchField/maxwellWallFvsPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/maxwellWallFvsPatchField/maxwellWallFvsPatchFieldsFwd.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/mixedFvsPatchField/mixedFvsPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/mixedFvsPatchField/mixedFvsPatchField.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/mixedFvsPatchField/mixedFvsPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/mixedFvsPatchField/mixedFvsPatchField.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/mixedFvsPatchField/mixedFvsPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/mixedFvsPatchField/mixedFvsPatchFields.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/mixedFvsPatchField/mixedFvsPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/mixedFvsPatchField/mixedFvsPatchFields.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/mixedFvsPatchField/mixedFvsPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/mixedFvsPatchField/mixedFvsPatchFieldsFwd.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/pressureInFvPatchField/pressureInFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/pressureInFvPatchField/pressureInFvPatchField.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/pressureInFvPatchField/pressureInFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/pressureInFvPatchField/pressureInFvPatchField.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/pressureInFvPatchField/pressureInFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/pressureInFvPatchField/pressureInFvPatchFields.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/pressureInFvPatchField/pressureInFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/pressureInFvPatchField/pressureInFvPatchFields.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/pressureInFvPatchField/pressureInFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/pressureInFvPatchField/pressureInFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/pressureOutFvPatchField/pressureOutFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/pressureOutFvPatchField/pressureOutFvPatchField.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/pressureOutFvPatchField/pressureOutFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/pressureOutFvPatchField/pressureOutFvPatchField.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/pressureOutFvPatchField/pressureOutFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/pressureOutFvPatchField/pressureOutFvPatchFields.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/pressureOutFvPatchField/pressureOutFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/pressureOutFvPatchField/pressureOutFvPatchFields.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/pressureOutFvPatchField/pressureOutFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/pressureOutFvPatchField/pressureOutFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/symmetryModFvPatchField/symmetryModFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/symmetryModFvPatchField/symmetryModFvPatchField.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/symmetryModFvPatchField/symmetryModFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/symmetryModFvPatchField/symmetryModFvPatchField.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/symmetryModFvPatchField/symmetryModFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/symmetryModFvPatchField/symmetryModFvPatchFields.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/symmetryModFvPatchField/symmetryModFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/symmetryModFvPatchField/symmetryModFvPatchFields.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/symmetryModFvPatchField/symmetryModFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/symmetryModFvPatchField/symmetryModFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/zeroGradientFvsPatchField/zeroGradientFvsPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/zeroGradientFvsPatchField/zeroGradientFvsPatchField.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/zeroGradientFvsPatchField/zeroGradientFvsPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/zeroGradientFvsPatchField/zeroGradientFvsPatchField.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/zeroGradientFvsPatchField/zeroGradientFvsPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/zeroGradientFvsPatchField/zeroGradientFvsPatchFields.C -------------------------------------------------------------------------------- /src/fvDVM/BCs/zeroGradientFvsPatchField/zeroGradientFvsPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/zeroGradientFvsPatchField/zeroGradientFvsPatchFields.H -------------------------------------------------------------------------------- /src/fvDVM/BCs/zeroGradientFvsPatchField/zeroGradientFvsPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/BCs/zeroGradientFvsPatchField/zeroGradientFvsPatchFieldsFwd.H -------------------------------------------------------------------------------- /src/fvDVM/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/Make/files -------------------------------------------------------------------------------- /src/fvDVM/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/Make/options -------------------------------------------------------------------------------- /src/fvDVM/Venkatakrishnan/VenkatakrishnanLimitedGrad/VenkatakrishnanLimitedGrad.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/Venkatakrishnan/VenkatakrishnanLimitedGrad/VenkatakrishnanLimitedGrad.H -------------------------------------------------------------------------------- /src/fvDVM/Venkatakrishnan/VenkatakrishnanLimitedGrad/VenkatakrishnanLimitedGrads.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/Venkatakrishnan/VenkatakrishnanLimitedGrad/VenkatakrishnanLimitedGrads.C -------------------------------------------------------------------------------- /src/fvDVM/Venkatakrishnan/VenkatakrishnanSlopeMulti/VenkatakrishnanSlopeMulti.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/Venkatakrishnan/VenkatakrishnanSlopeMulti/VenkatakrishnanSlopeMulti.C -------------------------------------------------------------------------------- /src/fvDVM/discreteVelocity/discreteVelocity.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/discreteVelocity/discreteVelocity.C -------------------------------------------------------------------------------- /src/fvDVM/discreteVelocity/discreteVelocity.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/discreteVelocity/discreteVelocity.H -------------------------------------------------------------------------------- /src/fvDVM/discreteVelocity/discreteVelocityI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/discreteVelocity/discreteVelocityI.H -------------------------------------------------------------------------------- /src/fvDVM/fieldMPIreducer/fieldMPIreducer.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/fieldMPIreducer/fieldMPIreducer.C -------------------------------------------------------------------------------- /src/fvDVM/fieldMPIreducer/fieldMPIreducer.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/fieldMPIreducer/fieldMPIreducer.H -------------------------------------------------------------------------------- /src/fvDVM/fieldMPIreducer/fieldMPIreducerI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/fieldMPIreducer/fieldMPIreducerI.H -------------------------------------------------------------------------------- /src/fvDVM/fvDVM/fvDVM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fvDVM/fvDVM/fvDVM.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/fvDVM/fvDVM.C -------------------------------------------------------------------------------- /src/fvDVM/fvDVM/fvDVM.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/fvDVM/fvDVM.H -------------------------------------------------------------------------------- /src/fvDVM/fvDVM/fvDVMI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/fvDVM/fvDVMI.H -------------------------------------------------------------------------------- /src/fvDVM/pwlInterp2/pwlInterp2.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/pwlInterp2/pwlInterp2.C -------------------------------------------------------------------------------- /src/fvDVM/pwlInterp2/pwlInterp2_test.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/pwlInterp2/pwlInterp2_test.C -------------------------------------------------------------------------------- /src/fvDVM/zeroBoundaryGrad/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/zeroBoundaryGrad/files -------------------------------------------------------------------------------- /src/fvDVM/zeroBoundaryGrad/invDistLeastSquaresVectors.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/zeroBoundaryGrad/invDistLeastSquaresVectors.C -------------------------------------------------------------------------------- /src/fvDVM/zeroBoundaryGrad/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/zeroBoundaryGrad/options -------------------------------------------------------------------------------- /src/fvDVM/zeroBoundaryGrad/unweightedLeastSquaresVectors.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/zeroBoundaryGrad/unweightedLeastSquaresVectors.C -------------------------------------------------------------------------------- /src/fvDVM/zeroBoundaryGrad/zeroBoundaryGrad.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/zeroBoundaryGrad/zeroBoundaryGrad.C -------------------------------------------------------------------------------- /src/fvDVM/zeroBoundaryGrad/zeroBoundaryGrad.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/zeroBoundaryGrad/zeroBoundaryGrad.H -------------------------------------------------------------------------------- /src/fvDVM/zeroBoundaryGrad/zeroBoundaryGrads.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/zeroBoundaryGrad/zeroBoundaryGrads.C -------------------------------------------------------------------------------- /src/fvDVM/zeroBoundaryGrad/zeroBoundaryVectors.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/zeroBoundaryGrad/zeroBoundaryVectors.C -------------------------------------------------------------------------------- /src/fvDVM/zeroBoundaryGrad/zeroBoundaryVectors.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/fvDVM/zeroBoundaryGrad/zeroBoundaryVectors.H -------------------------------------------------------------------------------- /src/readTimeControlsExplicit.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/readTimeControlsExplicit.H -------------------------------------------------------------------------------- /src/scripts/plotLog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/scripts/plotLog.sh -------------------------------------------------------------------------------- /src/scripts/setDV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/scripts/setDV.py -------------------------------------------------------------------------------- /src/setDeltaTvar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzhang777/paralleled_cdugksFoam/HEAD/src/setDeltaTvar.H --------------------------------------------------------------------------------