├── .gitignore ├── Allwmake ├── README.md ├── applications ├── Allwmake ├── solvers │ └── discreteMethods │ │ └── uniGasFoam │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── createFields.H │ │ └── uniGasFoam.C └── updateApplicationHeaders ├── doc ├── GUIDE.md ├── INSTALL.md └── LICENSE ├── src ├── lagrangian │ ├── Allwmake │ ├── CloudWithModels │ │ ├── CloudFunctionObjects │ │ │ ├── CloudFunctionObject │ │ │ │ ├── CloudFunctionObject.C │ │ │ │ ├── CloudFunctionObject.H │ │ │ │ └── CloudFunctionObjectNew.C │ │ │ └── CloudFunctionObjectList │ │ │ │ ├── CloudFunctionObjectList.C │ │ │ │ ├── CloudFunctionObjectList.H │ │ │ │ └── CloudFunctionObjectListI.H │ │ ├── CloudSubModelBase │ │ │ ├── CloudSubModelBase.C │ │ │ └── CloudSubModelBase.H │ │ ├── CloudWithModels │ │ │ ├── CloudWithModels.C │ │ │ ├── CloudWithModels.H │ │ │ └── CloudWithModelsI.H │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ └── cloudSolution │ │ │ ├── cloudSolution.C │ │ │ ├── cloudSolution.H │ │ │ └── cloudSolutionI.H │ └── uniGas │ │ ├── IO │ │ └── writeTimeData │ │ │ ├── writeTimeData.C │ │ │ └── writeTimeData.H │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── bgkCollisions │ │ ├── basic │ │ │ └── bgkCollisionModel │ │ │ │ ├── bgkCollisionModel.C │ │ │ │ └── bgkCollisionModel.H │ │ └── derived │ │ │ ├── noBGKCollision │ │ │ ├── noBGKCollision.C │ │ │ └── noBGKCollision.H │ │ │ ├── stochasticParticleBGK │ │ │ ├── stochasticParticleBGK.C │ │ │ └── stochasticParticleBGK.H │ │ │ ├── stochasticParticleESBGK │ │ │ ├── stochasticParticleESBGK.C │ │ │ └── stochasticParticleESBGK.H │ │ │ ├── stochasticParticleSBGK │ │ │ ├── stochasticParticleSBGK.C │ │ │ └── stochasticParticleSBGK.H │ │ │ └── unifiedStochasticParticleSBGK │ │ │ ├── unifiedStochasticParticleSBGK.C │ │ │ └── unifiedStochasticParticleSBGK.H │ │ ├── boundaries │ │ ├── basic │ │ │ ├── uniGasBoundaries │ │ │ │ ├── uniGasBoundaries.C │ │ │ │ ├── uniGasBoundaries.H │ │ │ │ └── uniGasBoundariesI.H │ │ │ ├── uniGasBoundaryBase │ │ │ │ ├── uniGasBoundaryBase.C │ │ │ │ └── uniGasBoundaryBase.H │ │ │ ├── uniGasCyclicBoundary │ │ │ │ ├── uniGasCyclicBoundary.C │ │ │ │ └── uniGasCyclicBoundary.H │ │ │ ├── uniGasGeneralBoundary │ │ │ │ ├── uniGasGeneralBoundary.C │ │ │ │ └── uniGasGeneralBoundary.H │ │ │ └── uniGasPatchBoundary │ │ │ │ ├── uniGasPatchBoundary.C │ │ │ │ └── uniGasPatchBoundary.H │ │ └── derived │ │ │ ├── cyclicBoundaries │ │ │ └── uniGasReflectiveParticleMembranePatch │ │ │ │ ├── uniGasReflectiveParticleMembranePatch.C │ │ │ │ └── uniGasReflectiveParticleMembranePatch.H │ │ │ ├── generalBoundaries │ │ │ ├── uniGasChapmanEnskogFreeStreamInflowFieldPatch │ │ │ │ ├── uniGasChapmanEnskogFreeStreamInflowFieldPatch.C │ │ │ │ └── uniGasChapmanEnskogFreeStreamInflowFieldPatch.H │ │ │ ├── uniGasChapmanEnskogFreeStreamInflowPatch │ │ │ │ ├── uniGasChapmanEnskogFreeStreamInflowPatch.C │ │ │ │ └── uniGasChapmanEnskogFreeStreamInflowPatch.H │ │ │ ├── uniGasFreeStreamInflowFieldPatch │ │ │ │ ├── uniGasFreeStreamInflowFieldPatch.C │ │ │ │ └── uniGasFreeStreamInflowFieldPatch.H │ │ │ ├── uniGasFreeStreamInflowPatch │ │ │ │ ├── uniGasFreeStreamInflowPatch.C │ │ │ │ └── uniGasFreeStreamInflowPatch.H │ │ │ ├── uniGasLiouFangPressureInletPatch │ │ │ │ ├── uniGasLiouFangPressureInletPatch.C │ │ │ │ └── uniGasLiouFangPressureInletPatch.H │ │ │ ├── uniGasLiouFangPressureOutletPatch │ │ │ │ ├── uniGasLiouFangPressureOutletPatch.C │ │ │ │ └── uniGasLiouFangPressureOutletPatch.H │ │ │ ├── uniGasMassFlowRateInletPatch │ │ │ │ ├── uniGasMassFlowRateInletPatch.C │ │ │ │ └── uniGasMassFlowRateInletPatch.H │ │ │ └── uniGasWangPressureInletPatch │ │ │ │ ├── uniGasWangPressureInletPatch.C │ │ │ │ └── uniGasWangPressureInletPatch.H │ │ │ └── patchBoundaries │ │ │ ├── uniGasCLLWallFieldPatch │ │ │ ├── uniGasCLLWallFieldPatch.C │ │ │ └── uniGasCLLWallFieldPatch.H │ │ │ ├── uniGasCLLWallPatch │ │ │ ├── uniGasCLLWallPatch.C │ │ │ └── uniGasCLLWallPatch.H │ │ │ ├── uniGasDeletionPatch │ │ │ ├── uniGasDeletionPatch.C │ │ │ └── uniGasDeletionPatch.H │ │ │ ├── uniGasDiffuseWallFieldPatch │ │ │ ├── uniGasDiffuseWallFieldPatch.C │ │ │ └── uniGasDiffuseWallFieldPatch.H │ │ │ ├── uniGasDiffuseWallPatch │ │ │ ├── uniGasDiffuseWallPatch.C │ │ │ └── uniGasDiffuseWallPatch.H │ │ │ ├── uniGasMixedDiffuseSpecularWallFieldPatch │ │ │ ├── uniGasMixedDiffuseSpecularWallFieldPatch.C │ │ │ └── uniGasMixedDiffuseSpecularWallFieldPatch.H │ │ │ ├── uniGasMixedDiffuseSpecularWallPatch │ │ │ ├── uniGasMixedDiffuseSpecularWallPatch.C │ │ │ └── uniGasMixedDiffuseSpecularWallPatch.H │ │ │ └── uniGasSpecularWallPatch │ │ │ ├── uniGasSpecularWallPatch.C │ │ │ └── uniGasSpecularWallPatch.H │ │ ├── boundaryMeasurements │ │ ├── boundaryMeasurements.C │ │ ├── boundaryMeasurements.H │ │ └── boundaryMeasurementsI.H │ │ ├── cellMeasurements │ │ ├── cellMeasurements.C │ │ ├── cellMeasurements.H │ │ └── cellMeasurementsI.H │ │ ├── clouds │ │ ├── uniGasCloud.C │ │ ├── uniGasCloud.H │ │ ├── uniGasCloudFunctionObjects.C │ │ └── uniGasCloudI.H │ │ ├── dsmcCollisionPartner │ │ ├── basic │ │ │ ├── dsmcCollisionPartner.C │ │ │ └── dsmcCollisionPartner.H │ │ └── derived │ │ │ ├── noTimeCounter │ │ │ ├── noTimeCounter.C │ │ │ └── noTimeCounter.H │ │ │ └── noTimeCounterSubCycled │ │ │ ├── noTimeCounterSubCycled.C │ │ │ └── noTimeCounterSubCycled.H │ │ ├── dsmcCollisions │ │ ├── basic │ │ │ └── dsmcCollisionModel │ │ │ │ ├── dsmcCollisionModel.C │ │ │ │ └── dsmcCollisionModel.H │ │ └── derived │ │ │ ├── LarsenBorgnakkeVariableHardSphere │ │ │ ├── LarsenBorgnakkeVariableHardSphere.C │ │ │ └── LarsenBorgnakkeVariableHardSphere.H │ │ │ ├── LarsenBorgnakkeVariableSoftSphere │ │ │ ├── LarsenBorgnakkeVariableSoftSphere.C │ │ │ └── LarsenBorgnakkeVariableSoftSphere.H │ │ │ ├── noDSMCCollision │ │ │ ├── noDSMCCollision.C │ │ │ └── noDSMCCollision.H │ │ │ ├── variableHardSphere │ │ │ ├── variableHardSphere.C │ │ │ └── variableHardSphere.H │ │ │ └── variableSoftSphere │ │ │ ├── variableSoftSphere.C │ │ │ └── variableSoftSphere.H │ │ ├── dynamicAdaptation │ │ ├── uniGasDynamicAdapter.C │ │ ├── uniGasDynamicAdapter.H │ │ └── uniGasDynamicAdapterI.H │ │ ├── dynamicLoadBalancing │ │ ├── uniGasDynamicLoadBalancing.C │ │ └── uniGasDynamicLoadBalancing.H │ │ ├── faceTracker │ │ ├── uniGasFaceTracker.C │ │ ├── uniGasFaceTracker.H │ │ └── uniGasFaceTrackerI.H │ │ ├── hybridDecomposition │ │ ├── basic │ │ │ ├── uniGasHybridDecomposition.C │ │ │ └── uniGasHybridDecomposition.H │ │ └── derived │ │ │ └── localKnudsen │ │ │ ├── localKnudsen.C │ │ │ └── localKnudsen.H │ │ ├── macroscopicProperties │ │ ├── basic │ │ │ ├── uniGasField │ │ │ │ ├── uniGasField.C │ │ │ │ └── uniGasField.H │ │ │ └── uniGasFieldProperties │ │ │ │ ├── uniGasFieldProperties.C │ │ │ │ ├── uniGasFieldProperties.H │ │ │ │ └── uniGasFieldPropertiesI.H │ │ └── derived │ │ │ ├── force │ │ │ └── uniGasForceSurface │ │ │ │ ├── uniGasForceSurface.C │ │ │ │ └── uniGasForceSurface.H │ │ │ ├── massFlux │ │ │ └── uniGasMassFluxSurface │ │ │ │ ├── uniGasMassFluxSurface.C │ │ │ │ └── uniGasMassFluxSurface.H │ │ │ └── volumetric │ │ │ └── uniGasVolFields │ │ │ ├── uniGasVolFields.C │ │ │ └── uniGasVolFields.H │ │ ├── parcels │ │ ├── uniGasParcel.C │ │ ├── uniGasParcel.H │ │ ├── uniGasParcelI.H │ │ └── uniGasParcelIO.C │ │ ├── reactions │ │ ├── basic │ │ │ ├── uniGasReaction │ │ │ │ ├── uniGasReaction.C │ │ │ │ ├── uniGasReaction.H │ │ │ │ └── uniGasReactionI.H │ │ │ └── uniGasReactions │ │ │ │ ├── uniGasReactions.C │ │ │ │ ├── uniGasReactions.H │ │ │ │ └── uniGasReactionsI.H │ │ └── derived │ │ │ ├── atomAtomIonisationDissimilarSpecies │ │ │ ├── atomAtomIonisationDissimilarSpecies.C │ │ │ └── atomAtomIonisationDissimilarSpecies.H │ │ │ ├── atomAtomIonisationSameSpecies │ │ │ ├── atomAtomIonisationSameSpecies.C │ │ │ └── atomAtomIonisationSameSpecies.H │ │ │ ├── atomElectronIonisation │ │ │ ├── atomElectronIonisation.C │ │ │ └── atomElectronIonisation.H │ │ │ ├── atomIonIonisation │ │ │ ├── atomIonIonisation.C │ │ │ └── atomIonIonisation.H │ │ │ ├── chargeExchange │ │ │ ├── chargeExchange.C │ │ │ └── chargeExchange.H │ │ │ ├── dissociationIonisationExchange │ │ │ ├── dissociationIonisationExchange.C │ │ │ └── dissociationIonisationExchange.H │ │ │ ├── dissociationIonisationTypeIDissimilarSpecies │ │ │ ├── dissociationIonisationTypeIDissimilarSpecies.C │ │ │ └── dissociationIonisationTypeIDissimilarSpecies.H │ │ │ ├── dissociationIonisationTypeISameSpecies │ │ │ ├── dissociationIonisationTypeISameSpecies.C │ │ │ └── dissociationIonisationTypeISameSpecies.H │ │ │ ├── forwardAssociativeIonisation │ │ │ ├── forwardAssociativeIonisation.C │ │ │ └── forwardAssociativeIonisation.H │ │ │ ├── forwardAssociativeIonisationDissimilarSpecies │ │ │ ├── forwardAssociativeIonisationDissimilarSpecies.C │ │ │ └── forwardAssociativeIonisationDissimilarSpecies.H │ │ │ ├── moleculeAtomDissociationIonisation │ │ │ ├── moleculeAtomDissociationIonisation.C │ │ │ └── moleculeAtomDissociationIonisation.H │ │ │ ├── moleculeElectronDissociationIonisation │ │ │ ├── moleculeElectronDissociationIonisation.C │ │ │ └── moleculeElectronDissociationIonisation.H │ │ │ ├── moleculeIonDissociationIonisation │ │ │ ├── moleculeIonDissociationIonisation.C │ │ │ └── moleculeIonDissociationIonisation.H │ │ │ └── reverseAssociativeIonisation │ │ │ ├── reverseAssociativeIonisation.C │ │ │ └── reverseAssociativeIonisation.H │ │ └── uniGasInitialisation │ │ ├── basic │ │ ├── uniGasAllConfigurations │ │ │ ├── uniGasAllConfigurations.C │ │ │ ├── uniGasAllConfigurations.H │ │ │ └── uniGasAllConfigurationsI.H │ │ └── uniGasConfiguration │ │ │ ├── uniGasConfiguration.C │ │ │ └── uniGasConfiguration.H │ │ └── derived │ │ ├── uniGasMeshFieldFill │ │ ├── uniGasMeshFieldFill.C │ │ └── uniGasMeshFieldFill.H │ │ ├── uniGasMeshFill │ │ ├── uniGasMeshFill.C │ │ └── uniGasMeshFill.H │ │ └── uniGasZoneFill │ │ ├── uniGasZoneFill.C │ │ └── uniGasZoneFill.H └── updateSrcHeaders ├── tutorials ├── uniGasFoam │ ├── expansionInVacuum │ │ ├── Allclean │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ │ └── uniGasProperties │ │ ├── monitor │ │ ├── orig.0 │ │ │ ├── U │ │ │ ├── elecT │ │ │ ├── numberDensity_Ar │ │ │ ├── rotT │ │ │ ├── transT │ │ │ ├── uspRhoNMean_Ar │ │ │ └── vibT │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── boundariesDict │ │ │ ├── chemReactDict │ │ │ ├── controlDict │ │ │ ├── createBafflesDict │ │ │ ├── decomposeParDict │ │ │ ├── fieldPropertiesDict │ │ │ ├── fvOptions │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── hybridDecompositionDict │ │ │ ├── topoSetDict │ │ │ └── uniGasInitialisationDict │ ├── hypersonicCylinder │ │ ├── Allclean │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ │ └── uniGasProperties │ │ ├── monitor │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── boundariesDict │ │ │ ├── chemReactDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fieldPropertiesDict │ │ │ ├── fvOptions │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── hybridDecompositionDict │ │ │ └── uniGasInitialisationDict │ ├── plumeImpingement │ │ ├── Allclean │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ │ └── uniGasProperties │ │ ├── monitor │ │ ├── orig.0 │ │ │ ├── U │ │ │ ├── elecT │ │ │ ├── numberDensity_Ar │ │ │ ├── rotT │ │ │ ├── transT │ │ │ ├── uspRhoNMean_Ar │ │ │ └── vibT │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── boundariesDict │ │ │ ├── chemReactDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── fieldPropertiesDict │ │ │ ├── fvOptions │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── hybridDecompositionDict │ │ │ └── uniGasInitialisationDict │ └── supersonicPlate │ │ ├── Allclean │ │ ├── Allrun │ │ ├── README │ │ ├── constant │ │ └── uniGasProperties │ │ ├── monitor │ │ └── system │ │ ├── blockMeshDict │ │ ├── boundariesDict │ │ ├── chemReactDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fieldPropertiesDict │ │ ├── fvOptions │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── hybridDecompositionDict │ │ └── uniGasInitialisationDict └── updateTutorialHeaders └── updateHeaders /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/.gitignore -------------------------------------------------------------------------------- /Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/Allwmake -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/README.md -------------------------------------------------------------------------------- /applications/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/applications/Allwmake -------------------------------------------------------------------------------- /applications/solvers/discreteMethods/uniGasFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/applications/solvers/discreteMethods/uniGasFoam/Make/files -------------------------------------------------------------------------------- /applications/solvers/discreteMethods/uniGasFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/applications/solvers/discreteMethods/uniGasFoam/Make/options -------------------------------------------------------------------------------- /applications/solvers/discreteMethods/uniGasFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/applications/solvers/discreteMethods/uniGasFoam/createFields.H -------------------------------------------------------------------------------- /applications/solvers/discreteMethods/uniGasFoam/uniGasFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/applications/solvers/discreteMethods/uniGasFoam/uniGasFoam.C -------------------------------------------------------------------------------- /applications/updateApplicationHeaders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/applications/updateApplicationHeaders -------------------------------------------------------------------------------- /doc/GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/doc/GUIDE.md -------------------------------------------------------------------------------- /doc/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/doc/INSTALL.md -------------------------------------------------------------------------------- /doc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/doc/LICENSE -------------------------------------------------------------------------------- /src/lagrangian/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/Allwmake -------------------------------------------------------------------------------- /src/lagrangian/CloudWithModels/CloudFunctionObjects/CloudFunctionObject/CloudFunctionObject.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/CloudWithModels/CloudFunctionObjects/CloudFunctionObject/CloudFunctionObject.C -------------------------------------------------------------------------------- /src/lagrangian/CloudWithModels/CloudFunctionObjects/CloudFunctionObject/CloudFunctionObject.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/CloudWithModels/CloudFunctionObjects/CloudFunctionObject/CloudFunctionObject.H -------------------------------------------------------------------------------- /src/lagrangian/CloudWithModels/CloudFunctionObjects/CloudFunctionObject/CloudFunctionObjectNew.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/CloudWithModels/CloudFunctionObjects/CloudFunctionObject/CloudFunctionObjectNew.C -------------------------------------------------------------------------------- /src/lagrangian/CloudWithModels/CloudFunctionObjects/CloudFunctionObjectList/CloudFunctionObjectList.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/CloudWithModels/CloudFunctionObjects/CloudFunctionObjectList/CloudFunctionObjectList.C -------------------------------------------------------------------------------- /src/lagrangian/CloudWithModels/CloudFunctionObjects/CloudFunctionObjectList/CloudFunctionObjectList.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/CloudWithModels/CloudFunctionObjects/CloudFunctionObjectList/CloudFunctionObjectList.H -------------------------------------------------------------------------------- /src/lagrangian/CloudWithModels/CloudFunctionObjects/CloudFunctionObjectList/CloudFunctionObjectListI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/CloudWithModels/CloudFunctionObjects/CloudFunctionObjectList/CloudFunctionObjectListI.H -------------------------------------------------------------------------------- /src/lagrangian/CloudWithModels/CloudSubModelBase/CloudSubModelBase.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/CloudWithModels/CloudSubModelBase/CloudSubModelBase.C -------------------------------------------------------------------------------- /src/lagrangian/CloudWithModels/CloudSubModelBase/CloudSubModelBase.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/CloudWithModels/CloudSubModelBase/CloudSubModelBase.H -------------------------------------------------------------------------------- /src/lagrangian/CloudWithModels/CloudWithModels/CloudWithModels.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/CloudWithModels/CloudWithModels/CloudWithModels.C -------------------------------------------------------------------------------- /src/lagrangian/CloudWithModels/CloudWithModels/CloudWithModels.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/CloudWithModels/CloudWithModels/CloudWithModels.H -------------------------------------------------------------------------------- /src/lagrangian/CloudWithModels/CloudWithModels/CloudWithModelsI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/CloudWithModels/CloudWithModels/CloudWithModelsI.H -------------------------------------------------------------------------------- /src/lagrangian/CloudWithModels/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/CloudWithModels/Make/files -------------------------------------------------------------------------------- /src/lagrangian/CloudWithModels/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/CloudWithModels/Make/options -------------------------------------------------------------------------------- /src/lagrangian/CloudWithModels/cloudSolution/cloudSolution.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/CloudWithModels/cloudSolution/cloudSolution.C -------------------------------------------------------------------------------- /src/lagrangian/CloudWithModels/cloudSolution/cloudSolution.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/CloudWithModels/cloudSolution/cloudSolution.H -------------------------------------------------------------------------------- /src/lagrangian/CloudWithModels/cloudSolution/cloudSolutionI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/CloudWithModels/cloudSolution/cloudSolutionI.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/IO/writeTimeData/writeTimeData.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/IO/writeTimeData/writeTimeData.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/IO/writeTimeData/writeTimeData.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/IO/writeTimeData/writeTimeData.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/Make/files -------------------------------------------------------------------------------- /src/lagrangian/uniGas/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/Make/options -------------------------------------------------------------------------------- /src/lagrangian/uniGas/bgkCollisions/basic/bgkCollisionModel/bgkCollisionModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/bgkCollisions/basic/bgkCollisionModel/bgkCollisionModel.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/bgkCollisions/basic/bgkCollisionModel/bgkCollisionModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/bgkCollisions/basic/bgkCollisionModel/bgkCollisionModel.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/bgkCollisions/derived/noBGKCollision/noBGKCollision.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/bgkCollisions/derived/noBGKCollision/noBGKCollision.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/bgkCollisions/derived/noBGKCollision/noBGKCollision.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/bgkCollisions/derived/noBGKCollision/noBGKCollision.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/bgkCollisions/derived/stochasticParticleBGK/stochasticParticleBGK.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/bgkCollisions/derived/stochasticParticleBGK/stochasticParticleBGK.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/bgkCollisions/derived/stochasticParticleBGK/stochasticParticleBGK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/bgkCollisions/derived/stochasticParticleBGK/stochasticParticleBGK.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/bgkCollisions/derived/stochasticParticleESBGK/stochasticParticleESBGK.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/bgkCollisions/derived/stochasticParticleESBGK/stochasticParticleESBGK.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/bgkCollisions/derived/stochasticParticleESBGK/stochasticParticleESBGK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/bgkCollisions/derived/stochasticParticleESBGK/stochasticParticleESBGK.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/bgkCollisions/derived/stochasticParticleSBGK/stochasticParticleSBGK.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/bgkCollisions/derived/stochasticParticleSBGK/stochasticParticleSBGK.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/bgkCollisions/derived/stochasticParticleSBGK/stochasticParticleSBGK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/bgkCollisions/derived/stochasticParticleSBGK/stochasticParticleSBGK.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/bgkCollisions/derived/unifiedStochasticParticleSBGK/unifiedStochasticParticleSBGK.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/bgkCollisions/derived/unifiedStochasticParticleSBGK/unifiedStochasticParticleSBGK.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/bgkCollisions/derived/unifiedStochasticParticleSBGK/unifiedStochasticParticleSBGK.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/bgkCollisions/derived/unifiedStochasticParticleSBGK/unifiedStochasticParticleSBGK.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/basic/uniGasBoundaries/uniGasBoundaries.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/basic/uniGasBoundaries/uniGasBoundaries.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/basic/uniGasBoundaries/uniGasBoundaries.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/basic/uniGasBoundaries/uniGasBoundaries.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/basic/uniGasBoundaries/uniGasBoundariesI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/basic/uniGasBoundaries/uniGasBoundariesI.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/basic/uniGasBoundaryBase/uniGasBoundaryBase.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/basic/uniGasBoundaryBase/uniGasBoundaryBase.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/basic/uniGasBoundaryBase/uniGasBoundaryBase.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/basic/uniGasBoundaryBase/uniGasBoundaryBase.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/basic/uniGasCyclicBoundary/uniGasCyclicBoundary.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/basic/uniGasCyclicBoundary/uniGasCyclicBoundary.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/basic/uniGasCyclicBoundary/uniGasCyclicBoundary.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/basic/uniGasCyclicBoundary/uniGasCyclicBoundary.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/basic/uniGasGeneralBoundary/uniGasGeneralBoundary.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/basic/uniGasGeneralBoundary/uniGasGeneralBoundary.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/basic/uniGasGeneralBoundary/uniGasGeneralBoundary.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/basic/uniGasGeneralBoundary/uniGasGeneralBoundary.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/basic/uniGasPatchBoundary/uniGasPatchBoundary.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/basic/uniGasPatchBoundary/uniGasPatchBoundary.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/basic/uniGasPatchBoundary/uniGasPatchBoundary.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/basic/uniGasPatchBoundary/uniGasPatchBoundary.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/cyclicBoundaries/uniGasReflectiveParticleMembranePatch/uniGasReflectiveParticleMembranePatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/cyclicBoundaries/uniGasReflectiveParticleMembranePatch/uniGasReflectiveParticleMembranePatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/cyclicBoundaries/uniGasReflectiveParticleMembranePatch/uniGasReflectiveParticleMembranePatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/cyclicBoundaries/uniGasReflectiveParticleMembranePatch/uniGasReflectiveParticleMembranePatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasChapmanEnskogFreeStreamInflowFieldPatch/uniGasChapmanEnskogFreeStreamInflowFieldPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasChapmanEnskogFreeStreamInflowFieldPatch/uniGasChapmanEnskogFreeStreamInflowFieldPatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasChapmanEnskogFreeStreamInflowFieldPatch/uniGasChapmanEnskogFreeStreamInflowFieldPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasChapmanEnskogFreeStreamInflowFieldPatch/uniGasChapmanEnskogFreeStreamInflowFieldPatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasChapmanEnskogFreeStreamInflowPatch/uniGasChapmanEnskogFreeStreamInflowPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasChapmanEnskogFreeStreamInflowPatch/uniGasChapmanEnskogFreeStreamInflowPatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasChapmanEnskogFreeStreamInflowPatch/uniGasChapmanEnskogFreeStreamInflowPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasChapmanEnskogFreeStreamInflowPatch/uniGasChapmanEnskogFreeStreamInflowPatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasFreeStreamInflowFieldPatch/uniGasFreeStreamInflowFieldPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasFreeStreamInflowFieldPatch/uniGasFreeStreamInflowFieldPatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasFreeStreamInflowFieldPatch/uniGasFreeStreamInflowFieldPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasFreeStreamInflowFieldPatch/uniGasFreeStreamInflowFieldPatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasFreeStreamInflowPatch/uniGasFreeStreamInflowPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasFreeStreamInflowPatch/uniGasFreeStreamInflowPatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasFreeStreamInflowPatch/uniGasFreeStreamInflowPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasFreeStreamInflowPatch/uniGasFreeStreamInflowPatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasLiouFangPressureInletPatch/uniGasLiouFangPressureInletPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasLiouFangPressureInletPatch/uniGasLiouFangPressureInletPatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasLiouFangPressureInletPatch/uniGasLiouFangPressureInletPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasLiouFangPressureInletPatch/uniGasLiouFangPressureInletPatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasLiouFangPressureOutletPatch/uniGasLiouFangPressureOutletPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasLiouFangPressureOutletPatch/uniGasLiouFangPressureOutletPatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasLiouFangPressureOutletPatch/uniGasLiouFangPressureOutletPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasLiouFangPressureOutletPatch/uniGasLiouFangPressureOutletPatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasMassFlowRateInletPatch/uniGasMassFlowRateInletPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasMassFlowRateInletPatch/uniGasMassFlowRateInletPatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasMassFlowRateInletPatch/uniGasMassFlowRateInletPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasMassFlowRateInletPatch/uniGasMassFlowRateInletPatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasWangPressureInletPatch/uniGasWangPressureInletPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasWangPressureInletPatch/uniGasWangPressureInletPatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasWangPressureInletPatch/uniGasWangPressureInletPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/generalBoundaries/uniGasWangPressureInletPatch/uniGasWangPressureInletPatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasCLLWallFieldPatch/uniGasCLLWallFieldPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasCLLWallFieldPatch/uniGasCLLWallFieldPatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasCLLWallFieldPatch/uniGasCLLWallFieldPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasCLLWallFieldPatch/uniGasCLLWallFieldPatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasCLLWallPatch/uniGasCLLWallPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasCLLWallPatch/uniGasCLLWallPatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasCLLWallPatch/uniGasCLLWallPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasCLLWallPatch/uniGasCLLWallPatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasDeletionPatch/uniGasDeletionPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasDeletionPatch/uniGasDeletionPatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasDeletionPatch/uniGasDeletionPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasDeletionPatch/uniGasDeletionPatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasDiffuseWallFieldPatch/uniGasDiffuseWallFieldPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasDiffuseWallFieldPatch/uniGasDiffuseWallFieldPatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasDiffuseWallFieldPatch/uniGasDiffuseWallFieldPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasDiffuseWallFieldPatch/uniGasDiffuseWallFieldPatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasDiffuseWallPatch/uniGasDiffuseWallPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasDiffuseWallPatch/uniGasDiffuseWallPatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasDiffuseWallPatch/uniGasDiffuseWallPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasDiffuseWallPatch/uniGasDiffuseWallPatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasMixedDiffuseSpecularWallFieldPatch/uniGasMixedDiffuseSpecularWallFieldPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasMixedDiffuseSpecularWallFieldPatch/uniGasMixedDiffuseSpecularWallFieldPatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasMixedDiffuseSpecularWallFieldPatch/uniGasMixedDiffuseSpecularWallFieldPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasMixedDiffuseSpecularWallFieldPatch/uniGasMixedDiffuseSpecularWallFieldPatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasMixedDiffuseSpecularWallPatch/uniGasMixedDiffuseSpecularWallPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasMixedDiffuseSpecularWallPatch/uniGasMixedDiffuseSpecularWallPatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasMixedDiffuseSpecularWallPatch/uniGasMixedDiffuseSpecularWallPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasMixedDiffuseSpecularWallPatch/uniGasMixedDiffuseSpecularWallPatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasSpecularWallPatch/uniGasSpecularWallPatch.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasSpecularWallPatch/uniGasSpecularWallPatch.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasSpecularWallPatch/uniGasSpecularWallPatch.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaries/derived/patchBoundaries/uniGasSpecularWallPatch/uniGasSpecularWallPatch.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaryMeasurements/boundaryMeasurements.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaryMeasurements/boundaryMeasurements.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaryMeasurements/boundaryMeasurements.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaryMeasurements/boundaryMeasurements.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/boundaryMeasurements/boundaryMeasurementsI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/boundaryMeasurements/boundaryMeasurementsI.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/cellMeasurements/cellMeasurements.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/cellMeasurements/cellMeasurements.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/cellMeasurements/cellMeasurements.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/cellMeasurements/cellMeasurements.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/cellMeasurements/cellMeasurementsI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/cellMeasurements/cellMeasurementsI.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/clouds/uniGasCloud.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/clouds/uniGasCloud.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/clouds/uniGasCloud.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/clouds/uniGasCloud.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/clouds/uniGasCloudFunctionObjects.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/clouds/uniGasCloudFunctionObjects.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/clouds/uniGasCloudI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/clouds/uniGasCloudI.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisionPartner/basic/dsmcCollisionPartner.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisionPartner/basic/dsmcCollisionPartner.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisionPartner/basic/dsmcCollisionPartner.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisionPartner/basic/dsmcCollisionPartner.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisionPartner/derived/noTimeCounter/noTimeCounter.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisionPartner/derived/noTimeCounter/noTimeCounter.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisionPartner/derived/noTimeCounter/noTimeCounter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisionPartner/derived/noTimeCounter/noTimeCounter.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisionPartner/derived/noTimeCounterSubCycled/noTimeCounterSubCycled.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisionPartner/derived/noTimeCounterSubCycled/noTimeCounterSubCycled.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisionPartner/derived/noTimeCounterSubCycled/noTimeCounterSubCycled.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisionPartner/derived/noTimeCounterSubCycled/noTimeCounterSubCycled.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisions/basic/dsmcCollisionModel/dsmcCollisionModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisions/basic/dsmcCollisionModel/dsmcCollisionModel.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisions/basic/dsmcCollisionModel/dsmcCollisionModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisions/basic/dsmcCollisionModel/dsmcCollisionModel.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisions/derived/LarsenBorgnakkeVariableHardSphere/LarsenBorgnakkeVariableHardSphere.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisions/derived/LarsenBorgnakkeVariableHardSphere/LarsenBorgnakkeVariableHardSphere.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisions/derived/LarsenBorgnakkeVariableHardSphere/LarsenBorgnakkeVariableHardSphere.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisions/derived/LarsenBorgnakkeVariableHardSphere/LarsenBorgnakkeVariableHardSphere.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisions/derived/LarsenBorgnakkeVariableSoftSphere/LarsenBorgnakkeVariableSoftSphere.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisions/derived/LarsenBorgnakkeVariableSoftSphere/LarsenBorgnakkeVariableSoftSphere.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisions/derived/LarsenBorgnakkeVariableSoftSphere/LarsenBorgnakkeVariableSoftSphere.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisions/derived/LarsenBorgnakkeVariableSoftSphere/LarsenBorgnakkeVariableSoftSphere.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisions/derived/noDSMCCollision/noDSMCCollision.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisions/derived/noDSMCCollision/noDSMCCollision.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisions/derived/noDSMCCollision/noDSMCCollision.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisions/derived/noDSMCCollision/noDSMCCollision.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisions/derived/variableHardSphere/variableHardSphere.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisions/derived/variableHardSphere/variableHardSphere.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisions/derived/variableHardSphere/variableHardSphere.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisions/derived/variableHardSphere/variableHardSphere.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisions/derived/variableSoftSphere/variableSoftSphere.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisions/derived/variableSoftSphere/variableSoftSphere.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dsmcCollisions/derived/variableSoftSphere/variableSoftSphere.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dsmcCollisions/derived/variableSoftSphere/variableSoftSphere.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dynamicAdaptation/uniGasDynamicAdapter.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dynamicAdaptation/uniGasDynamicAdapter.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dynamicAdaptation/uniGasDynamicAdapter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dynamicAdaptation/uniGasDynamicAdapter.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dynamicAdaptation/uniGasDynamicAdapterI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dynamicAdaptation/uniGasDynamicAdapterI.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dynamicLoadBalancing/uniGasDynamicLoadBalancing.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dynamicLoadBalancing/uniGasDynamicLoadBalancing.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/dynamicLoadBalancing/uniGasDynamicLoadBalancing.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/dynamicLoadBalancing/uniGasDynamicLoadBalancing.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/faceTracker/uniGasFaceTracker.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/faceTracker/uniGasFaceTracker.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/faceTracker/uniGasFaceTracker.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/faceTracker/uniGasFaceTracker.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/faceTracker/uniGasFaceTrackerI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/faceTracker/uniGasFaceTrackerI.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/hybridDecomposition/basic/uniGasHybridDecomposition.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/hybridDecomposition/basic/uniGasHybridDecomposition.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/hybridDecomposition/basic/uniGasHybridDecomposition.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/hybridDecomposition/basic/uniGasHybridDecomposition.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/hybridDecomposition/derived/localKnudsen/localKnudsen.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/hybridDecomposition/derived/localKnudsen/localKnudsen.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/hybridDecomposition/derived/localKnudsen/localKnudsen.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/hybridDecomposition/derived/localKnudsen/localKnudsen.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/macroscopicProperties/basic/uniGasField/uniGasField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/macroscopicProperties/basic/uniGasField/uniGasField.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/macroscopicProperties/basic/uniGasField/uniGasField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/macroscopicProperties/basic/uniGasField/uniGasField.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/macroscopicProperties/basic/uniGasFieldProperties/uniGasFieldProperties.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/macroscopicProperties/basic/uniGasFieldProperties/uniGasFieldProperties.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/macroscopicProperties/basic/uniGasFieldProperties/uniGasFieldProperties.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/macroscopicProperties/basic/uniGasFieldProperties/uniGasFieldProperties.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/macroscopicProperties/basic/uniGasFieldProperties/uniGasFieldPropertiesI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/macroscopicProperties/basic/uniGasFieldProperties/uniGasFieldPropertiesI.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/macroscopicProperties/derived/force/uniGasForceSurface/uniGasForceSurface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/macroscopicProperties/derived/force/uniGasForceSurface/uniGasForceSurface.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/macroscopicProperties/derived/force/uniGasForceSurface/uniGasForceSurface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/macroscopicProperties/derived/force/uniGasForceSurface/uniGasForceSurface.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/macroscopicProperties/derived/massFlux/uniGasMassFluxSurface/uniGasMassFluxSurface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/macroscopicProperties/derived/massFlux/uniGasMassFluxSurface/uniGasMassFluxSurface.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/macroscopicProperties/derived/massFlux/uniGasMassFluxSurface/uniGasMassFluxSurface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/macroscopicProperties/derived/massFlux/uniGasMassFluxSurface/uniGasMassFluxSurface.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/macroscopicProperties/derived/volumetric/uniGasVolFields/uniGasVolFields.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/macroscopicProperties/derived/volumetric/uniGasVolFields/uniGasVolFields.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/macroscopicProperties/derived/volumetric/uniGasVolFields/uniGasVolFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/macroscopicProperties/derived/volumetric/uniGasVolFields/uniGasVolFields.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/parcels/uniGasParcel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/parcels/uniGasParcel.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/parcels/uniGasParcel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/parcels/uniGasParcel.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/parcels/uniGasParcelI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/parcels/uniGasParcelI.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/parcels/uniGasParcelIO.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/parcels/uniGasParcelIO.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/basic/uniGasReaction/uniGasReaction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/basic/uniGasReaction/uniGasReaction.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/basic/uniGasReaction/uniGasReaction.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/basic/uniGasReaction/uniGasReaction.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/basic/uniGasReaction/uniGasReactionI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/basic/uniGasReaction/uniGasReactionI.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/basic/uniGasReactions/uniGasReactions.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/basic/uniGasReactions/uniGasReactions.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/basic/uniGasReactions/uniGasReactions.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/basic/uniGasReactions/uniGasReactions.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/basic/uniGasReactions/uniGasReactionsI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/basic/uniGasReactions/uniGasReactionsI.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/atomAtomIonisationDissimilarSpecies/atomAtomIonisationDissimilarSpecies.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/atomAtomIonisationDissimilarSpecies/atomAtomIonisationDissimilarSpecies.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/atomAtomIonisationDissimilarSpecies/atomAtomIonisationDissimilarSpecies.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/atomAtomIonisationDissimilarSpecies/atomAtomIonisationDissimilarSpecies.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/atomAtomIonisationSameSpecies/atomAtomIonisationSameSpecies.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/atomAtomIonisationSameSpecies/atomAtomIonisationSameSpecies.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/atomAtomIonisationSameSpecies/atomAtomIonisationSameSpecies.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/atomAtomIonisationSameSpecies/atomAtomIonisationSameSpecies.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/atomElectronIonisation/atomElectronIonisation.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/atomElectronIonisation/atomElectronIonisation.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/atomElectronIonisation/atomElectronIonisation.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/atomElectronIonisation/atomElectronIonisation.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/atomIonIonisation/atomIonIonisation.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/atomIonIonisation/atomIonIonisation.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/atomIonIonisation/atomIonIonisation.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/atomIonIonisation/atomIonIonisation.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/chargeExchange/chargeExchange.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/chargeExchange/chargeExchange.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/chargeExchange/chargeExchange.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/chargeExchange/chargeExchange.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/dissociationIonisationExchange/dissociationIonisationExchange.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/dissociationIonisationExchange/dissociationIonisationExchange.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/dissociationIonisationExchange/dissociationIonisationExchange.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/dissociationIonisationExchange/dissociationIonisationExchange.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/dissociationIonisationTypeIDissimilarSpecies/dissociationIonisationTypeIDissimilarSpecies.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/dissociationIonisationTypeIDissimilarSpecies/dissociationIonisationTypeIDissimilarSpecies.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/dissociationIonisationTypeIDissimilarSpecies/dissociationIonisationTypeIDissimilarSpecies.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/dissociationIonisationTypeIDissimilarSpecies/dissociationIonisationTypeIDissimilarSpecies.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/dissociationIonisationTypeISameSpecies/dissociationIonisationTypeISameSpecies.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/dissociationIonisationTypeISameSpecies/dissociationIonisationTypeISameSpecies.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/dissociationIonisationTypeISameSpecies/dissociationIonisationTypeISameSpecies.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/dissociationIonisationTypeISameSpecies/dissociationIonisationTypeISameSpecies.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/forwardAssociativeIonisation/forwardAssociativeIonisation.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/forwardAssociativeIonisation/forwardAssociativeIonisation.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/forwardAssociativeIonisation/forwardAssociativeIonisation.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/forwardAssociativeIonisation/forwardAssociativeIonisation.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/forwardAssociativeIonisationDissimilarSpecies/forwardAssociativeIonisationDissimilarSpecies.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/forwardAssociativeIonisationDissimilarSpecies/forwardAssociativeIonisationDissimilarSpecies.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/forwardAssociativeIonisationDissimilarSpecies/forwardAssociativeIonisationDissimilarSpecies.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/forwardAssociativeIonisationDissimilarSpecies/forwardAssociativeIonisationDissimilarSpecies.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/moleculeAtomDissociationIonisation/moleculeAtomDissociationIonisation.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/moleculeAtomDissociationIonisation/moleculeAtomDissociationIonisation.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/moleculeAtomDissociationIonisation/moleculeAtomDissociationIonisation.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/moleculeAtomDissociationIonisation/moleculeAtomDissociationIonisation.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/moleculeElectronDissociationIonisation/moleculeElectronDissociationIonisation.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/moleculeElectronDissociationIonisation/moleculeElectronDissociationIonisation.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/moleculeElectronDissociationIonisation/moleculeElectronDissociationIonisation.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/moleculeElectronDissociationIonisation/moleculeElectronDissociationIonisation.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/moleculeIonDissociationIonisation/moleculeIonDissociationIonisation.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/moleculeIonDissociationIonisation/moleculeIonDissociationIonisation.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/moleculeIonDissociationIonisation/moleculeIonDissociationIonisation.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/moleculeIonDissociationIonisation/moleculeIonDissociationIonisation.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/reverseAssociativeIonisation/reverseAssociativeIonisation.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/reverseAssociativeIonisation/reverseAssociativeIonisation.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/reactions/derived/reverseAssociativeIonisation/reverseAssociativeIonisation.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/reactions/derived/reverseAssociativeIonisation/reverseAssociativeIonisation.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/uniGasInitialisation/basic/uniGasAllConfigurations/uniGasAllConfigurations.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/uniGasInitialisation/basic/uniGasAllConfigurations/uniGasAllConfigurations.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/uniGasInitialisation/basic/uniGasAllConfigurations/uniGasAllConfigurations.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/uniGasInitialisation/basic/uniGasAllConfigurations/uniGasAllConfigurations.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/uniGasInitialisation/basic/uniGasAllConfigurations/uniGasAllConfigurationsI.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/uniGasInitialisation/basic/uniGasAllConfigurations/uniGasAllConfigurationsI.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/uniGasInitialisation/basic/uniGasConfiguration/uniGasConfiguration.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/uniGasInitialisation/basic/uniGasConfiguration/uniGasConfiguration.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/uniGasInitialisation/basic/uniGasConfiguration/uniGasConfiguration.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/uniGasInitialisation/basic/uniGasConfiguration/uniGasConfiguration.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/uniGasInitialisation/derived/uniGasMeshFieldFill/uniGasMeshFieldFill.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/uniGasInitialisation/derived/uniGasMeshFieldFill/uniGasMeshFieldFill.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/uniGasInitialisation/derived/uniGasMeshFieldFill/uniGasMeshFieldFill.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/uniGasInitialisation/derived/uniGasMeshFieldFill/uniGasMeshFieldFill.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/uniGasInitialisation/derived/uniGasMeshFill/uniGasMeshFill.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/uniGasInitialisation/derived/uniGasMeshFill/uniGasMeshFill.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/uniGasInitialisation/derived/uniGasMeshFill/uniGasMeshFill.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/uniGasInitialisation/derived/uniGasMeshFill/uniGasMeshFill.H -------------------------------------------------------------------------------- /src/lagrangian/uniGas/uniGasInitialisation/derived/uniGasZoneFill/uniGasZoneFill.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/uniGasInitialisation/derived/uniGasZoneFill/uniGasZoneFill.C -------------------------------------------------------------------------------- /src/lagrangian/uniGas/uniGasInitialisation/derived/uniGasZoneFill/uniGasZoneFill.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/lagrangian/uniGas/uniGasInitialisation/derived/uniGasZoneFill/uniGasZoneFill.H -------------------------------------------------------------------------------- /src/updateSrcHeaders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/src/updateSrcHeaders -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/Allclean -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/Allrun -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/README -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/constant/uniGasProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/constant/uniGasProperties -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/monitor -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/orig.0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/orig.0/U -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/orig.0/elecT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/orig.0/elecT -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/orig.0/numberDensity_Ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/orig.0/numberDensity_Ar -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/orig.0/rotT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/orig.0/rotT -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/orig.0/transT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/orig.0/transT -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/orig.0/uspRhoNMean_Ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/orig.0/uspRhoNMean_Ar -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/orig.0/vibT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/orig.0/vibT -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/system/boundariesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/system/boundariesDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/system/chemReactDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/system/chemReactDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/system/controlDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/system/createBafflesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/system/createBafflesDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/system/fieldPropertiesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/system/fieldPropertiesDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/system/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/system/fvOptions -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/system/fvSolution -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/system/hybridDecompositionDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/system/hybridDecompositionDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/system/topoSetDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/expansionInVacuum/system/uniGasInitialisationDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/expansionInVacuum/system/uniGasInitialisationDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/hypersonicCylinder/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/hypersonicCylinder/Allclean -------------------------------------------------------------------------------- /tutorials/uniGasFoam/hypersonicCylinder/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/hypersonicCylinder/Allrun -------------------------------------------------------------------------------- /tutorials/uniGasFoam/hypersonicCylinder/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/hypersonicCylinder/README -------------------------------------------------------------------------------- /tutorials/uniGasFoam/hypersonicCylinder/constant/uniGasProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/hypersonicCylinder/constant/uniGasProperties -------------------------------------------------------------------------------- /tutorials/uniGasFoam/hypersonicCylinder/monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/hypersonicCylinder/monitor -------------------------------------------------------------------------------- /tutorials/uniGasFoam/hypersonicCylinder/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/hypersonicCylinder/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/hypersonicCylinder/system/boundariesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/hypersonicCylinder/system/boundariesDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/hypersonicCylinder/system/chemReactDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/hypersonicCylinder/system/chemReactDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/hypersonicCylinder/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/hypersonicCylinder/system/controlDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/hypersonicCylinder/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/hypersonicCylinder/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/hypersonicCylinder/system/fieldPropertiesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/hypersonicCylinder/system/fieldPropertiesDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/hypersonicCylinder/system/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/hypersonicCylinder/system/fvOptions -------------------------------------------------------------------------------- /tutorials/uniGasFoam/hypersonicCylinder/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/hypersonicCylinder/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/uniGasFoam/hypersonicCylinder/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/hypersonicCylinder/system/fvSolution -------------------------------------------------------------------------------- /tutorials/uniGasFoam/hypersonicCylinder/system/hybridDecompositionDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/hypersonicCylinder/system/hybridDecompositionDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/hypersonicCylinder/system/uniGasInitialisationDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/hypersonicCylinder/system/uniGasInitialisationDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/Allclean -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/Allrun -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/README -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/constant/uniGasProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/constant/uniGasProperties -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/monitor -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/orig.0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/orig.0/U -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/orig.0/elecT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/orig.0/elecT -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/orig.0/numberDensity_Ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/orig.0/numberDensity_Ar -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/orig.0/rotT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/orig.0/rotT -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/orig.0/transT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/orig.0/transT -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/orig.0/uspRhoNMean_Ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/orig.0/uspRhoNMean_Ar -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/orig.0/vibT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/orig.0/vibT -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/system/boundariesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/system/boundariesDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/system/chemReactDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/system/chemReactDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/system/controlDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/system/fieldPropertiesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/system/fieldPropertiesDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/system/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/system/fvOptions -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/system/fvSolution -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/system/hybridDecompositionDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/system/hybridDecompositionDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/plumeImpingement/system/uniGasInitialisationDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/plumeImpingement/system/uniGasInitialisationDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/supersonicPlate/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/supersonicPlate/Allclean -------------------------------------------------------------------------------- /tutorials/uniGasFoam/supersonicPlate/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/supersonicPlate/Allrun -------------------------------------------------------------------------------- /tutorials/uniGasFoam/supersonicPlate/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/supersonicPlate/README -------------------------------------------------------------------------------- /tutorials/uniGasFoam/supersonicPlate/constant/uniGasProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/supersonicPlate/constant/uniGasProperties -------------------------------------------------------------------------------- /tutorials/uniGasFoam/supersonicPlate/monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/supersonicPlate/monitor -------------------------------------------------------------------------------- /tutorials/uniGasFoam/supersonicPlate/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/supersonicPlate/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/supersonicPlate/system/boundariesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/supersonicPlate/system/boundariesDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/supersonicPlate/system/chemReactDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/supersonicPlate/system/chemReactDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/supersonicPlate/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/supersonicPlate/system/controlDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/supersonicPlate/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/supersonicPlate/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/supersonicPlate/system/fieldPropertiesDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/supersonicPlate/system/fieldPropertiesDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/supersonicPlate/system/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/supersonicPlate/system/fvOptions -------------------------------------------------------------------------------- /tutorials/uniGasFoam/supersonicPlate/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/supersonicPlate/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/uniGasFoam/supersonicPlate/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/supersonicPlate/system/fvSolution -------------------------------------------------------------------------------- /tutorials/uniGasFoam/supersonicPlate/system/hybridDecompositionDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/supersonicPlate/system/hybridDecompositionDict -------------------------------------------------------------------------------- /tutorials/uniGasFoam/supersonicPlate/system/uniGasInitialisationDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/uniGasFoam/supersonicPlate/system/uniGasInitialisationDict -------------------------------------------------------------------------------- /tutorials/updateTutorialHeaders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/tutorials/updateTutorialHeaders -------------------------------------------------------------------------------- /updateHeaders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVasileiadis93/uniGasFoam/HEAD/updateHeaders --------------------------------------------------------------------------------