├── .gitignore ├── LICENSE ├── README.md ├── myFoam ├── Allwclean ├── Allwmake ├── Make │ ├── files │ └── options ├── finiteVolume │ └── fields │ │ └── fvPatchFields │ │ └── derived │ │ ├── blendedMean │ │ ├── blendedMeanFvPatchField.C │ │ ├── blendedMeanFvPatchField.H │ │ ├── blendedMeanFvPatchFields.C │ │ ├── blendedMeanFvPatchFields.H │ │ └── fixedMeanFvPatchFieldsFwd.H │ │ ├── flowRateDirectedInletVelocity │ │ ├── flowRateDirectedInletVelocityFvPatchVectorField.C │ │ └── flowRateDirectedInletVelocityFvPatchVectorField.H │ │ ├── inletOutletInternal │ │ ├── inletOutletInternalFvPatchField.C │ │ ├── inletOutletInternalFvPatchField.H │ │ ├── inletOutletInternalFvPatchFields.C │ │ ├── inletOutletInternalFvPatchFields.H │ │ └── inletOutletInternalFvPatchFieldsFwd.H │ │ ├── meanTotalPressure │ │ ├── meanTotalPressureFvPatchScalarField.C │ │ └── meanTotalPressureFvPatchScalarField.H │ │ ├── mixedSubsonicSupersonicOutlet │ │ ├── mixedSubsonicSupersonicOutletFvPatchScalarField.C │ │ └── mixedSubsonicSupersonicOutletFvPatchScalarField.H │ │ ├── mixingPlane │ │ ├── mixingPlaneFvPatchField.C │ │ ├── mixingPlaneFvPatchField.H │ │ ├── mixingPlaneFvPatchFields.C │ │ ├── mixingPlaneFvPatchFields.H │ │ └── mixingPlaneFvPatchFieldsFwd.H │ │ ├── movingWallSlipVelocity │ │ ├── movingWallSlipVelocityFvPatchVectorField.C │ │ └── movingWallSlipVelocityFvPatchVectorField.H │ │ ├── myPressureDirectedInletVelocity │ │ ├── myPressureDirectedInletVelocityFvPatchVectorField.C │ │ └── myPressureDirectedInletVelocityFvPatchVectorField.H │ │ ├── subsonicInletTotal │ │ ├── subsonicInletTotalFvPatchVectorField.C │ │ └── subsonicInletTotalFvPatchVectorField.H │ │ ├── subsonicOutletTemperature │ │ ├── subsonicOutletTemperatureFvPatchScalarField.C │ │ └── subsonicOutletTemperatureFvPatchScalarField.H │ │ ├── subsonicOutletVelocity │ │ ├── subsonicOutletVelocityFvPatchVectorField.C │ │ └── subsonicOutletVelocityFvPatchVectorField.H │ │ ├── temperatureDirectedInletOutletVelocity │ │ ├── temperatureDirectedInletOutletVelocityFvPatchVectorField.C │ │ └── temperatureDirectedInletOutletVelocityFvPatchVectorField.H │ │ ├── totalPressureDirectedInletOutletVelocity │ │ ├── totalPressureDirectedInletOutletVelocityFvPatchVectorField.C │ │ └── totalPressureDirectedInletOutletVelocityFvPatchVectorField.H │ │ ├── totalPressureDirectedInletVelocity │ │ ├── totalPressureDirectedInletVelocityFvPatchVectorField.C │ │ └── totalPressureDirectedInletVelocityFvPatchVectorField.H │ │ └── uniformOutletInlet │ │ ├── uniformOutletInletFvPatchField.C │ │ ├── uniformOutletInletFvPatchField.H │ │ ├── uniformOutletInletFvPatchFields.C │ │ ├── uniformOutletInletFvPatchFields.H │ │ └── uniformOutletInletFvPatchFieldsFwd.H ├── functionObjects │ ├── Make │ │ ├── files │ │ └── options │ └── mixingInterface │ │ ├── mixingInterface.C │ │ ├── mixingInterface.H │ │ └── mixingInterfaces ├── fvMotionSolvers │ ├── Make │ │ ├── files │ │ └── options │ ├── fvMotionSolvers │ │ └── displacement │ │ │ └── laplacian │ │ │ ├── myDisplacementLaplacianFvMotionSolver.C │ │ │ └── myDisplacementLaplacianFvMotionSolver.H │ ├── lnInclude │ │ ├── complexAmplitudeDisplacementPointPatchVectorField.C │ │ ├── complexAmplitudeDisplacementPointPatchVectorField.H │ │ ├── motionInterpolation.C │ │ ├── motionInterpolation.H │ │ ├── myDisplacementLaplacianFvMotionSolver.C │ │ ├── myDisplacementLaplacianFvMotionSolver.H │ │ ├── patchCorrectedInterpolation.C │ │ ├── patchCorrectedInterpolation.H │ │ ├── patchCorrectedInterpolationTemplates.C │ │ ├── patchTransformedInterpolation.C │ │ └── patchTransformedInterpolation.H │ ├── motionInterpolation │ │ ├── motionInterpolation │ │ │ ├── motionInterpolation.C │ │ │ └── motionInterpolation.H │ │ ├── patchCorrected │ │ │ ├── patchCorrectedInterpolation.C │ │ │ ├── patchCorrectedInterpolation.H │ │ │ └── patchCorrectedInterpolationTemplates.C │ │ └── patchTransformed │ │ │ ├── patchTransformedInterpolation.C │ │ │ └── patchTransformedInterpolation.H │ └── pointPatchFields │ │ └── derived │ │ └── complexAmplitudeDisplacement │ │ ├── complexAmplitudeDisplacementPointPatchVectorField.C │ │ └── complexAmplitudeDisplacementPointPatchVectorField.H └── meshTools │ └── algorithms │ └── PointEdgeWave │ ├── PointData.C │ ├── PointData.H │ └── PointDataI.H ├── mySolvers ├── Allwclean ├── Allwmake ├── myDbns │ ├── Make │ │ ├── files │ │ └── options │ ├── bound │ │ ├── boundMinMax.C │ │ └── boundMinMax.H │ ├── dbnsFlux │ │ ├── AUSMPWplusFlux │ │ │ ├── AUSMPWplusFlux.C │ │ │ └── AUSMPWplusFlux.H │ │ ├── AUSMplusUpFlux │ │ │ ├── AUSMplusUpFlux.C │ │ │ └── AUSMplusUpFlux.H │ │ ├── betaFlux │ │ │ ├── betaFlux.C │ │ │ └── betaFlux.H │ │ ├── dbnsFlux.C │ │ ├── dbnsFlux.H │ │ ├── hllLMFlux │ │ │ ├── hllLMFlux.C │ │ │ └── hllLMFlux.H │ │ ├── hllcFlux │ │ │ ├── hllcFlux.C │ │ │ └── hllcFlux.H │ │ ├── hllcLMFlux │ │ │ ├── hllcLMFlux.C │ │ │ └── hllcLMFlux.H │ │ ├── roeFlux │ │ │ ├── roeFlux.C │ │ │ └── roeFlux.H │ │ ├── rotatedFlux │ │ │ ├── rotatedFlux.C │ │ │ └── rotatedFlux.H │ │ └── rusanovFlux │ │ │ ├── rusanovFlux.C │ │ │ └── rusanovFlux.H │ ├── include │ │ ├── readFieldBounds.H │ │ └── updateFields.H │ └── numericFlux │ │ ├── directionInterpolate.H │ │ ├── numericFlux.C │ │ ├── numericFlux.H │ │ └── numericFluxBase.H ├── myLusgsFoam │ ├── Make │ │ ├── files │ │ └── options │ ├── backwardSweep.H │ ├── compressibleCFLNo.H │ ├── createFields.H │ ├── createRDeltaTau.H │ ├── forwardSweep.H │ ├── lusgsSweep.H │ ├── myLusgsFoam.C │ ├── readLUSGSControls.H │ └── setRDeltaTau.H └── mySonicLiquidFoam │ ├── Make │ ├── files │ └── options │ ├── UEqn.H │ ├── compressibleContinuityErrs.H │ ├── correctPhi.H │ ├── createFields.H │ ├── mySonicLiquidFoam.C │ ├── pEqn.H │ ├── readThermodynamicProperties.H │ └── readTransportProperties.H └── tutorials └── myLusgsFoam ├── axiBump ├── 0 │ ├── T │ ├── U │ ├── alphat │ ├── k │ ├── nut │ ├── omega │ └── p ├── Allrun ├── constant │ ├── thermophysicalProperties │ └── turbulenceProperties ├── getMesh.sh └── system │ ├── controlDict │ ├── createPatchDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ └── lower_wall ├── ercoftacCentrifugalPump_DyM ├── 0 │ ├── T │ ├── U │ ├── alphat │ ├── k │ ├── nut │ ├── omega │ └── p ├── constant │ ├── dynamicMeshDict │ ├── polyMesh │ │ ├── boundary │ │ ├── cellZones.gz │ │ ├── faceZones.gz │ │ ├── faces.gz │ │ ├── neighbour.gz │ │ ├── owner.gz │ │ ├── pointZones.gz │ │ ├── points.gz │ │ └── sets │ │ │ ├── region0.gz │ │ │ └── region1.gz │ ├── thermophysicalProperties │ └── turbulenceProperties └── system │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution ├── ercoftacCentrifugalPump_MRF ├── 0 │ ├── T │ ├── U │ ├── alphat │ ├── k │ ├── nut │ ├── omega │ └── p ├── constant │ ├── MRFProperties │ ├── polyMesh │ │ ├── boundary │ │ ├── cellZones.gz │ │ ├── faceZones.gz │ │ ├── faces.gz │ │ ├── neighbour.gz │ │ ├── owner.gz │ │ ├── pointZones.gz │ │ ├── points.gz │ │ └── sets │ │ │ ├── region0.gz │ │ │ └── region1.gz │ ├── thermophysicalProperties │ └── turbulenceProperties └── system │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution ├── hypersonicCylinder ├── 0 │ ├── T │ ├── U │ └── p ├── Allclean ├── Allrun ├── constant │ ├── thermophysicalProperties │ └── turbulenceProperties └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution ├── lowMachChannel ├── 0 │ ├── T │ ├── U │ └── p ├── Allclean ├── Allrun ├── constant │ ├── thermophysicalProperties │ └── turbulenceProperties └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ └── surfaces ├── oscillating_NACA0012 ├── 0 │ ├── Ma.gz │ ├── T │ ├── U │ ├── p │ └── pointDisplacement ├── README ├── constant │ ├── dynamicMeshDict │ ├── polyMesh │ │ ├── boundary │ │ ├── cellZones.gz │ │ ├── faceZones.gz │ │ ├── faces.gz │ │ ├── neighbour.gz │ │ ├── owner.gz │ │ ├── pointZones.gz │ │ └── points.gz │ ├── thermophysicalProperties │ └── turbulenceProperties └── system │ ├── controlDict │ ├── forceCoeffsCompressible │ ├── forcesCompressible │ ├── fvSchemes │ ├── fvSolution │ └── surfaces └── transonicChannel ├── 0 ├── T ├── U └── p ├── Allrun ├── constant ├── thermophysicalProperties └── turbulenceProperties └── system ├── blockMeshDict ├── controlDict ├── decomposeParDict ├── fvSchemes ├── fvSolution └── surfaces /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/README.md -------------------------------------------------------------------------------- /myFoam/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/Allwclean -------------------------------------------------------------------------------- /myFoam/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/Allwmake -------------------------------------------------------------------------------- /myFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/Make/files -------------------------------------------------------------------------------- /myFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/Make/options -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/blendedMean/blendedMeanFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/blendedMean/blendedMeanFvPatchField.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/blendedMean/blendedMeanFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/blendedMean/blendedMeanFvPatchField.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/blendedMean/blendedMeanFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/blendedMean/blendedMeanFvPatchFields.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/blendedMean/blendedMeanFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/blendedMean/blendedMeanFvPatchFields.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/blendedMean/fixedMeanFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/blendedMean/fixedMeanFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/flowRateDirectedInletVelocity/flowRateDirectedInletVelocityFvPatchVectorField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/flowRateDirectedInletVelocity/flowRateDirectedInletVelocityFvPatchVectorField.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/flowRateDirectedInletVelocity/flowRateDirectedInletVelocityFvPatchVectorField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/flowRateDirectedInletVelocity/flowRateDirectedInletVelocityFvPatchVectorField.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/inletOutletInternal/inletOutletInternalFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/inletOutletInternal/inletOutletInternalFvPatchField.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/inletOutletInternal/inletOutletInternalFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/inletOutletInternal/inletOutletInternalFvPatchField.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/inletOutletInternal/inletOutletInternalFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/inletOutletInternal/inletOutletInternalFvPatchFields.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/inletOutletInternal/inletOutletInternalFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/inletOutletInternal/inletOutletInternalFvPatchFields.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/inletOutletInternal/inletOutletInternalFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/inletOutletInternal/inletOutletInternalFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/meanTotalPressure/meanTotalPressureFvPatchScalarField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/meanTotalPressure/meanTotalPressureFvPatchScalarField.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/meanTotalPressure/meanTotalPressureFvPatchScalarField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/meanTotalPressure/meanTotalPressureFvPatchScalarField.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/mixedSubsonicSupersonicOutlet/mixedSubsonicSupersonicOutletFvPatchScalarField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/mixedSubsonicSupersonicOutlet/mixedSubsonicSupersonicOutletFvPatchScalarField.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/mixedSubsonicSupersonicOutlet/mixedSubsonicSupersonicOutletFvPatchScalarField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/mixedSubsonicSupersonicOutlet/mixedSubsonicSupersonicOutletFvPatchScalarField.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/mixingPlane/mixingPlaneFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/mixingPlane/mixingPlaneFvPatchField.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/mixingPlane/mixingPlaneFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/mixingPlane/mixingPlaneFvPatchField.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/mixingPlane/mixingPlaneFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/mixingPlane/mixingPlaneFvPatchFields.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/mixingPlane/mixingPlaneFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/mixingPlane/mixingPlaneFvPatchFields.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/mixingPlane/mixingPlaneFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/mixingPlane/mixingPlaneFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/movingWallSlipVelocity/movingWallSlipVelocityFvPatchVectorField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/movingWallSlipVelocity/movingWallSlipVelocityFvPatchVectorField.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/movingWallSlipVelocity/movingWallSlipVelocityFvPatchVectorField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/movingWallSlipVelocity/movingWallSlipVelocityFvPatchVectorField.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/myPressureDirectedInletVelocity/myPressureDirectedInletVelocityFvPatchVectorField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/myPressureDirectedInletVelocity/myPressureDirectedInletVelocityFvPatchVectorField.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/myPressureDirectedInletVelocity/myPressureDirectedInletVelocityFvPatchVectorField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/myPressureDirectedInletVelocity/myPressureDirectedInletVelocityFvPatchVectorField.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/subsonicInletTotal/subsonicInletTotalFvPatchVectorField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/subsonicInletTotal/subsonicInletTotalFvPatchVectorField.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/subsonicInletTotal/subsonicInletTotalFvPatchVectorField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/subsonicInletTotal/subsonicInletTotalFvPatchVectorField.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/subsonicOutletTemperature/subsonicOutletTemperatureFvPatchScalarField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/subsonicOutletTemperature/subsonicOutletTemperatureFvPatchScalarField.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/subsonicOutletTemperature/subsonicOutletTemperatureFvPatchScalarField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/subsonicOutletTemperature/subsonicOutletTemperatureFvPatchScalarField.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/subsonicOutletVelocity/subsonicOutletVelocityFvPatchVectorField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/subsonicOutletVelocity/subsonicOutletVelocityFvPatchVectorField.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/subsonicOutletVelocity/subsonicOutletVelocityFvPatchVectorField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/subsonicOutletVelocity/subsonicOutletVelocityFvPatchVectorField.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/temperatureDirectedInletOutletVelocity/temperatureDirectedInletOutletVelocityFvPatchVectorField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/temperatureDirectedInletOutletVelocity/temperatureDirectedInletOutletVelocityFvPatchVectorField.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/temperatureDirectedInletOutletVelocity/temperatureDirectedInletOutletVelocityFvPatchVectorField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/temperatureDirectedInletOutletVelocity/temperatureDirectedInletOutletVelocityFvPatchVectorField.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/totalPressureDirectedInletOutletVelocity/totalPressureDirectedInletOutletVelocityFvPatchVectorField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/totalPressureDirectedInletOutletVelocity/totalPressureDirectedInletOutletVelocityFvPatchVectorField.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/totalPressureDirectedInletOutletVelocity/totalPressureDirectedInletOutletVelocityFvPatchVectorField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/totalPressureDirectedInletOutletVelocity/totalPressureDirectedInletOutletVelocityFvPatchVectorField.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/totalPressureDirectedInletVelocity/totalPressureDirectedInletVelocityFvPatchVectorField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/totalPressureDirectedInletVelocity/totalPressureDirectedInletVelocityFvPatchVectorField.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/totalPressureDirectedInletVelocity/totalPressureDirectedInletVelocityFvPatchVectorField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/totalPressureDirectedInletVelocity/totalPressureDirectedInletVelocityFvPatchVectorField.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/uniformOutletInlet/uniformOutletInletFvPatchField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/uniformOutletInlet/uniformOutletInletFvPatchField.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/uniformOutletInlet/uniformOutletInletFvPatchField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/uniformOutletInlet/uniformOutletInletFvPatchField.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/uniformOutletInlet/uniformOutletInletFvPatchFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/uniformOutletInlet/uniformOutletInletFvPatchFields.C -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/uniformOutletInlet/uniformOutletInletFvPatchFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/uniformOutletInlet/uniformOutletInletFvPatchFields.H -------------------------------------------------------------------------------- /myFoam/finiteVolume/fields/fvPatchFields/derived/uniformOutletInlet/uniformOutletInletFvPatchFieldsFwd.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/finiteVolume/fields/fvPatchFields/derived/uniformOutletInlet/uniformOutletInletFvPatchFieldsFwd.H -------------------------------------------------------------------------------- /myFoam/functionObjects/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/functionObjects/Make/files -------------------------------------------------------------------------------- /myFoam/functionObjects/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/functionObjects/Make/options -------------------------------------------------------------------------------- /myFoam/functionObjects/mixingInterface/mixingInterface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/functionObjects/mixingInterface/mixingInterface.C -------------------------------------------------------------------------------- /myFoam/functionObjects/mixingInterface/mixingInterface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/functionObjects/mixingInterface/mixingInterface.H -------------------------------------------------------------------------------- /myFoam/functionObjects/mixingInterface/mixingInterfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/functionObjects/mixingInterface/mixingInterfaces -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/fvMotionSolvers/Make/files -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/fvMotionSolvers/Make/options -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/fvMotionSolvers/displacement/laplacian/myDisplacementLaplacianFvMotionSolver.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/fvMotionSolvers/fvMotionSolvers/displacement/laplacian/myDisplacementLaplacianFvMotionSolver.C -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/fvMotionSolvers/displacement/laplacian/myDisplacementLaplacianFvMotionSolver.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/fvMotionSolvers/fvMotionSolvers/displacement/laplacian/myDisplacementLaplacianFvMotionSolver.H -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/lnInclude/complexAmplitudeDisplacementPointPatchVectorField.C: -------------------------------------------------------------------------------- 1 | ../pointPatchFields/derived/complexAmplitudeDisplacement/complexAmplitudeDisplacementPointPatchVectorField.C -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/lnInclude/complexAmplitudeDisplacementPointPatchVectorField.H: -------------------------------------------------------------------------------- 1 | ../pointPatchFields/derived/complexAmplitudeDisplacement/complexAmplitudeDisplacementPointPatchVectorField.H -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/lnInclude/motionInterpolation.C: -------------------------------------------------------------------------------- 1 | ../motionInterpolation/motionInterpolation/motionInterpolation.C -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/lnInclude/motionInterpolation.H: -------------------------------------------------------------------------------- 1 | ../motionInterpolation/motionInterpolation/motionInterpolation.H -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/lnInclude/myDisplacementLaplacianFvMotionSolver.C: -------------------------------------------------------------------------------- 1 | ../fvMotionSolvers/displacement/laplacian/myDisplacementLaplacianFvMotionSolver.C -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/lnInclude/myDisplacementLaplacianFvMotionSolver.H: -------------------------------------------------------------------------------- 1 | ../fvMotionSolvers/displacement/laplacian/myDisplacementLaplacianFvMotionSolver.H -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/lnInclude/patchCorrectedInterpolation.C: -------------------------------------------------------------------------------- 1 | ../motionInterpolation/patchCorrected/patchCorrectedInterpolation.C -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/lnInclude/patchCorrectedInterpolation.H: -------------------------------------------------------------------------------- 1 | ../motionInterpolation/patchCorrected/patchCorrectedInterpolation.H -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/lnInclude/patchCorrectedInterpolationTemplates.C: -------------------------------------------------------------------------------- 1 | ../motionInterpolation/patchCorrected/patchCorrectedInterpolationTemplates.C -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/lnInclude/patchTransformedInterpolation.C: -------------------------------------------------------------------------------- 1 | ../motionInterpolation/patchTransformed/patchTransformedInterpolation.C -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/lnInclude/patchTransformedInterpolation.H: -------------------------------------------------------------------------------- 1 | ../motionInterpolation/patchTransformed/patchTransformedInterpolation.H -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/motionInterpolation/motionInterpolation/motionInterpolation.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/fvMotionSolvers/motionInterpolation/motionInterpolation/motionInterpolation.C -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/motionInterpolation/motionInterpolation/motionInterpolation.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/fvMotionSolvers/motionInterpolation/motionInterpolation/motionInterpolation.H -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/motionInterpolation/patchCorrected/patchCorrectedInterpolation.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/fvMotionSolvers/motionInterpolation/patchCorrected/patchCorrectedInterpolation.C -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/motionInterpolation/patchCorrected/patchCorrectedInterpolation.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/fvMotionSolvers/motionInterpolation/patchCorrected/patchCorrectedInterpolation.H -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/motionInterpolation/patchCorrected/patchCorrectedInterpolationTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/fvMotionSolvers/motionInterpolation/patchCorrected/patchCorrectedInterpolationTemplates.C -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/motionInterpolation/patchTransformed/patchTransformedInterpolation.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/fvMotionSolvers/motionInterpolation/patchTransformed/patchTransformedInterpolation.C -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/motionInterpolation/patchTransformed/patchTransformedInterpolation.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/fvMotionSolvers/motionInterpolation/patchTransformed/patchTransformedInterpolation.H -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/pointPatchFields/derived/complexAmplitudeDisplacement/complexAmplitudeDisplacementPointPatchVectorField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/fvMotionSolvers/pointPatchFields/derived/complexAmplitudeDisplacement/complexAmplitudeDisplacementPointPatchVectorField.C -------------------------------------------------------------------------------- /myFoam/fvMotionSolvers/pointPatchFields/derived/complexAmplitudeDisplacement/complexAmplitudeDisplacementPointPatchVectorField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/fvMotionSolvers/pointPatchFields/derived/complexAmplitudeDisplacement/complexAmplitudeDisplacementPointPatchVectorField.H -------------------------------------------------------------------------------- /myFoam/meshTools/algorithms/PointEdgeWave/PointData.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/meshTools/algorithms/PointEdgeWave/PointData.C -------------------------------------------------------------------------------- /myFoam/meshTools/algorithms/PointEdgeWave/PointData.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/meshTools/algorithms/PointEdgeWave/PointData.H -------------------------------------------------------------------------------- /myFoam/meshTools/algorithms/PointEdgeWave/PointDataI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/myFoam/meshTools/algorithms/PointEdgeWave/PointDataI.H -------------------------------------------------------------------------------- /mySolvers/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/Allwclean -------------------------------------------------------------------------------- /mySolvers/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/Allwmake -------------------------------------------------------------------------------- /mySolvers/myDbns/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/Make/files -------------------------------------------------------------------------------- /mySolvers/myDbns/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/Make/options -------------------------------------------------------------------------------- /mySolvers/myDbns/bound/boundMinMax.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/bound/boundMinMax.C -------------------------------------------------------------------------------- /mySolvers/myDbns/bound/boundMinMax.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/bound/boundMinMax.H -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/AUSMPWplusFlux/AUSMPWplusFlux.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/AUSMPWplusFlux/AUSMPWplusFlux.C -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/AUSMPWplusFlux/AUSMPWplusFlux.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/AUSMPWplusFlux/AUSMPWplusFlux.H -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/AUSMplusUpFlux/AUSMplusUpFlux.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/AUSMplusUpFlux/AUSMplusUpFlux.C -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/AUSMplusUpFlux/AUSMplusUpFlux.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/AUSMplusUpFlux/AUSMplusUpFlux.H -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/betaFlux/betaFlux.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/betaFlux/betaFlux.C -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/betaFlux/betaFlux.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/betaFlux/betaFlux.H -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/dbnsFlux.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/dbnsFlux.C -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/dbnsFlux.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/dbnsFlux.H -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/hllLMFlux/hllLMFlux.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/hllLMFlux/hllLMFlux.C -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/hllLMFlux/hllLMFlux.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/hllLMFlux/hllLMFlux.H -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/hllcFlux/hllcFlux.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/hllcFlux/hllcFlux.C -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/hllcFlux/hllcFlux.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/hllcFlux/hllcFlux.H -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/hllcLMFlux/hllcLMFlux.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/hllcLMFlux/hllcLMFlux.C -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/hllcLMFlux/hllcLMFlux.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/hllcLMFlux/hllcLMFlux.H -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/roeFlux/roeFlux.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/roeFlux/roeFlux.C -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/roeFlux/roeFlux.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/roeFlux/roeFlux.H -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/rotatedFlux/rotatedFlux.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/rotatedFlux/rotatedFlux.C -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/rotatedFlux/rotatedFlux.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/rotatedFlux/rotatedFlux.H -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/rusanovFlux/rusanovFlux.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/rusanovFlux/rusanovFlux.C -------------------------------------------------------------------------------- /mySolvers/myDbns/dbnsFlux/rusanovFlux/rusanovFlux.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/dbnsFlux/rusanovFlux/rusanovFlux.H -------------------------------------------------------------------------------- /mySolvers/myDbns/include/readFieldBounds.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/include/readFieldBounds.H -------------------------------------------------------------------------------- /mySolvers/myDbns/include/updateFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/include/updateFields.H -------------------------------------------------------------------------------- /mySolvers/myDbns/numericFlux/directionInterpolate.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/numericFlux/directionInterpolate.H -------------------------------------------------------------------------------- /mySolvers/myDbns/numericFlux/numericFlux.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/numericFlux/numericFlux.C -------------------------------------------------------------------------------- /mySolvers/myDbns/numericFlux/numericFlux.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/numericFlux/numericFlux.H -------------------------------------------------------------------------------- /mySolvers/myDbns/numericFlux/numericFluxBase.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myDbns/numericFlux/numericFluxBase.H -------------------------------------------------------------------------------- /mySolvers/myLusgsFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myLusgsFoam/Make/files -------------------------------------------------------------------------------- /mySolvers/myLusgsFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myLusgsFoam/Make/options -------------------------------------------------------------------------------- /mySolvers/myLusgsFoam/backwardSweep.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myLusgsFoam/backwardSweep.H -------------------------------------------------------------------------------- /mySolvers/myLusgsFoam/compressibleCFLNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myLusgsFoam/compressibleCFLNo.H -------------------------------------------------------------------------------- /mySolvers/myLusgsFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myLusgsFoam/createFields.H -------------------------------------------------------------------------------- /mySolvers/myLusgsFoam/createRDeltaTau.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myLusgsFoam/createRDeltaTau.H -------------------------------------------------------------------------------- /mySolvers/myLusgsFoam/forwardSweep.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myLusgsFoam/forwardSweep.H -------------------------------------------------------------------------------- /mySolvers/myLusgsFoam/lusgsSweep.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myLusgsFoam/lusgsSweep.H -------------------------------------------------------------------------------- /mySolvers/myLusgsFoam/myLusgsFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myLusgsFoam/myLusgsFoam.C -------------------------------------------------------------------------------- /mySolvers/myLusgsFoam/readLUSGSControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myLusgsFoam/readLUSGSControls.H -------------------------------------------------------------------------------- /mySolvers/myLusgsFoam/setRDeltaTau.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/myLusgsFoam/setRDeltaTau.H -------------------------------------------------------------------------------- /mySolvers/mySonicLiquidFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/mySonicLiquidFoam/Make/files -------------------------------------------------------------------------------- /mySolvers/mySonicLiquidFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/mySonicLiquidFoam/Make/options -------------------------------------------------------------------------------- /mySolvers/mySonicLiquidFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/mySonicLiquidFoam/UEqn.H -------------------------------------------------------------------------------- /mySolvers/mySonicLiquidFoam/compressibleContinuityErrs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/mySonicLiquidFoam/compressibleContinuityErrs.H -------------------------------------------------------------------------------- /mySolvers/mySonicLiquidFoam/correctPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/mySonicLiquidFoam/correctPhi.H -------------------------------------------------------------------------------- /mySolvers/mySonicLiquidFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/mySonicLiquidFoam/createFields.H -------------------------------------------------------------------------------- /mySolvers/mySonicLiquidFoam/mySonicLiquidFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/mySonicLiquidFoam/mySonicLiquidFoam.C -------------------------------------------------------------------------------- /mySolvers/mySonicLiquidFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/mySonicLiquidFoam/pEqn.H -------------------------------------------------------------------------------- /mySolvers/mySonicLiquidFoam/readThermodynamicProperties.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/mySonicLiquidFoam/readThermodynamicProperties.H -------------------------------------------------------------------------------- /mySolvers/mySonicLiquidFoam/readTransportProperties.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/mySolvers/mySonicLiquidFoam/readTransportProperties.H -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/0/T -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/0/U -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/0/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/0/alphat -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/0/k -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/0/nut -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/0/omega -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/0/p -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/Allrun -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/getMesh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/getMesh.sh -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/system/controlDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/system/createPatchDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/system/createPatchDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/system/fvSolution -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/axiBump/system/lower_wall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/axiBump/system/lower_wall -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/0/T -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/0/U -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/0/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/0/alphat -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/0/k -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/0/nut -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/0/omega -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/0/p -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/dynamicMeshDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/boundary -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/cellZones.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/cellZones.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/faceZones.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/faceZones.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/faces.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/faces.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/neighbour.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/neighbour.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/owner.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/owner.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/pointZones.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/pointZones.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/points.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/points.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/sets/region0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/sets/region0.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/sets/region1.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/polyMesh/sets/region1.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/system/controlDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_DyM/system/fvSolution -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/0/T -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/0/U -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/0/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/0/alphat -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/0/k -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/0/nut -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/0/omega -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/0/p -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/MRFProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/MRFProperties -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/boundary -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/cellZones.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/cellZones.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/faceZones.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/faceZones.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/faces.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/faces.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/neighbour.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/neighbour.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/owner.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/owner.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/pointZones.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/pointZones.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/points.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/points.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/sets/region0.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/sets/region0.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/sets/region1.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/polyMesh/sets/region1.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/system/controlDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/ercoftacCentrifugalPump_MRF/system/fvSolution -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/hypersonicCylinder/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/hypersonicCylinder/0/T -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/hypersonicCylinder/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/hypersonicCylinder/0/U -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/hypersonicCylinder/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/hypersonicCylinder/0/p -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/hypersonicCylinder/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/hypersonicCylinder/Allclean -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/hypersonicCylinder/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/hypersonicCylinder/Allrun -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/hypersonicCylinder/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/hypersonicCylinder/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/hypersonicCylinder/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/hypersonicCylinder/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/hypersonicCylinder/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/hypersonicCylinder/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/hypersonicCylinder/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/hypersonicCylinder/system/controlDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/hypersonicCylinder/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/hypersonicCylinder/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/hypersonicCylinder/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/hypersonicCylinder/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/hypersonicCylinder/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/hypersonicCylinder/system/fvSolution -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/lowMachChannel/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/lowMachChannel/0/T -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/lowMachChannel/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/lowMachChannel/0/U -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/lowMachChannel/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/lowMachChannel/0/p -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/lowMachChannel/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/lowMachChannel/Allclean -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/lowMachChannel/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/lowMachChannel/Allrun -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/lowMachChannel/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/lowMachChannel/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/lowMachChannel/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/lowMachChannel/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/lowMachChannel/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/lowMachChannel/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/lowMachChannel/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/lowMachChannel/system/controlDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/lowMachChannel/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/lowMachChannel/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/lowMachChannel/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/lowMachChannel/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/lowMachChannel/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/lowMachChannel/system/fvSolution -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/lowMachChannel/system/surfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/lowMachChannel/system/surfaces -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/0/Ma.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/0/Ma.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/0/T -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/0/U -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/0/p -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/0/pointDisplacement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/0/pointDisplacement -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/README -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/constant/dynamicMeshDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/constant/polyMesh/boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/constant/polyMesh/boundary -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/constant/polyMesh/cellZones.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/constant/polyMesh/cellZones.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/constant/polyMesh/faceZones.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/constant/polyMesh/faceZones.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/constant/polyMesh/faces.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/constant/polyMesh/faces.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/constant/polyMesh/neighbour.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/constant/polyMesh/neighbour.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/constant/polyMesh/owner.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/constant/polyMesh/owner.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/constant/polyMesh/pointZones.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/constant/polyMesh/pointZones.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/constant/polyMesh/points.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/constant/polyMesh/points.gz -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/system/controlDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/system/forceCoeffsCompressible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/system/forceCoeffsCompressible -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/system/forcesCompressible: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/system/forcesCompressible -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/system/fvSolution -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/oscillating_NACA0012/system/surfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/oscillating_NACA0012/system/surfaces -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/transonicChannel/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/transonicChannel/0/T -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/transonicChannel/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/transonicChannel/0/U -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/transonicChannel/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/transonicChannel/0/p -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/transonicChannel/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/transonicChannel/Allrun -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/transonicChannel/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/transonicChannel/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/transonicChannel/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/transonicChannel/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/transonicChannel/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/transonicChannel/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/transonicChannel/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/transonicChannel/system/controlDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/transonicChannel/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/transonicChannel/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/transonicChannel/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/transonicChannel/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/transonicChannel/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/transonicChannel/system/fvSolution -------------------------------------------------------------------------------- /tutorials/myLusgsFoam/transonicChannel/system/surfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/furstj/myFoam/HEAD/tutorials/myLusgsFoam/transonicChannel/system/surfaces --------------------------------------------------------------------------------