├── README.md ├── benchMark_Free_Convection ├── 0 │ ├── T │ ├── U │ ├── alphat │ ├── epsilon │ ├── k │ ├── nuTilda │ ├── nut │ ├── omega │ ├── p │ └── p_rgh ├── Allclean ├── Allrun ├── README ├── constant │ ├── g │ ├── thermophysicalProperties │ └── turbulenceProperties ├── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ ├── fvSolution │ └── sample └── validation │ ├── createGraphs │ └── exptData │ ├── mt_z0_10_lo.dat │ ├── mt_z0_30_lo.dat │ ├── mt_z0_40_lo.dat │ ├── mt_z0_50_lo.dat │ ├── mt_z0_60_lo.dat │ ├── mt_z0_70_lo.dat │ ├── mt_z0_90_lo.dat │ ├── mv_z0_10_lo.dat │ ├── mv_z0_30_lo.dat │ ├── mv_z0_40_lo.dat │ ├── mv_z0_50_lo.dat │ ├── mv_z0_60_lo.dat │ ├── mv_z0_70_lo.dat │ └── mv_z0_90_lo.dat ├── buoyantPimpleFoam_timevaryingBC ├── boussinesq_salome_HeatExchg │ ├── 0.orig │ │ ├── T │ │ ├── U │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ ├── omega │ │ ├── p │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── g │ │ ├── thermophysicalProperties │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── mesh_BL_tet.unv │ ├── salome-mesh-gen │ └── system │ │ ├── blockMeshDict │ │ ├── changeDictionaryDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── buoyantCavity │ ├── 0 │ │ ├── T │ │ ├── U │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ ├── omega │ │ ├── p │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── README │ ├── constant │ │ ├── g │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ ├── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── sample │ └── validation │ │ ├── createGraphs │ │ └── exptData │ │ ├── mt_z0_10_lo.dat │ │ ├── mt_z0_30_lo.dat │ │ ├── mt_z0_40_lo.dat │ │ ├── mt_z0_50_lo.dat │ │ ├── mt_z0_60_lo.dat │ │ ├── mt_z0_70_lo.dat │ │ ├── mt_z0_90_lo.dat │ │ ├── mv_z0_10_lo.dat │ │ ├── mv_z0_30_lo.dat │ │ ├── mv_z0_40_lo.dat │ │ ├── mv_z0_50_lo.dat │ │ ├── mv_z0_60_lo.dat │ │ ├── mv_z0_70_lo.dat │ │ └── mv_z0_90_lo.dat ├── chockedNozzle │ ├── 0 │ │ ├── CH4 │ │ ├── H2 │ │ ├── H2O │ │ ├── N2 │ │ ├── O2 │ │ ├── T │ │ ├── U │ │ ├── Ydefault │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── chemistryProperties │ │ ├── combustionProperties │ │ ├── g │ │ ├── inlet.csv │ │ ├── reactionsGRI │ │ ├── thermo.compressibleGasGRI │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution ├── heatfluxtimevary │ ├── 0 │ │ ├── T │ │ ├── U │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ ├── omega │ │ ├── p │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── g │ │ ├── temp_profile.csv │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution ├── hotRoom │ ├── 0.orig │ │ ├── T │ │ ├── U │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ ├── p │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── g │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── propeller │ ├── 0.orig │ │ ├── U │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── Allrun.pre │ ├── constant │ │ ├── dynamicMeshDict │ │ ├── transportProperties │ │ ├── triSurface │ │ │ ├── innerCylinder.obj │ │ │ ├── innerCylinderSmall.obj │ │ │ ├── outerCylinder.obj │ │ │ ├── propellerStem1.obj │ │ │ ├── propellerStem2.obj │ │ │ └── propellerStem3.obj │ │ └── turbulenceProperties │ └── system │ │ ├── AMIWeights │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── createInletOutletSets.topoSetDict │ │ ├── createPatchDict │ │ ├── decomposeParDict │ │ ├── forces │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── snappyHexMeshDict │ │ ├── surfaceFeatureExtractDict │ │ ├── surfaceFeatureExtractDictDefaults │ │ └── surfaces ├── salomePolyHeatExchg │ ├── 0.orig │ │ ├── T │ │ ├── U │ │ ├── alphat │ │ ├── epsilon │ │ ├── k │ │ ├── nut │ │ ├── omega │ │ ├── p │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── g │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ ├── mesh_BL_tet.unv │ ├── salome-mesh-gen │ └── system │ │ ├── blockMeshDict │ │ ├── changeDictionaryDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── thermocoupleTestCase │ ├── 0 │ │ ├── IDefault │ │ ├── T │ │ ├── U │ │ ├── p │ │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── boundaryRadiationProperties │ │ ├── g │ │ ├── radiationProperties │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── fvSchemes │ │ └── fvSolution └── timevaryingCavityFoam │ ├── 0 │ ├── T │ ├── U │ ├── alphat │ ├── epsilon │ ├── k │ ├── nut │ ├── omega │ ├── p │ └── p_rgh │ ├── Allclean │ ├── Allrun │ ├── buglog_timevaryingTemp │ ├── constant │ ├── g │ ├── temp_profile.csv │ ├── thermophysicalProperties │ └── turbulenceProperties │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── fvSchemes │ └── fvSolution ├── chtMultiregionFoam ├── copy_jouleHeatingSolid │ ├── 0.orig │ │ └── solid │ │ │ ├── T │ │ │ ├── jouleHeatingSource:V │ │ │ ├── jouleHeatingSource:sigma │ │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── Allrun-parallel │ ├── Allrun.pre │ ├── constant │ │ ├── g │ │ ├── regionProperties │ │ └── solid │ │ │ └── thermophysicalProperties │ ├── createGraphs │ └── system │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSolution │ │ └── solid │ │ ├── blockMeshDict │ │ ├── decomposeParDict │ │ ├── fvOptions │ │ ├── fvSchemes │ │ └── fvSolution ├── heatExchangers │ ├── expt_onePipeHeatExchg_salome │ │ ├── 0.orig │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── rho │ │ ├── Allclean │ │ ├── Allrun-parallel │ │ ├── Allrun-serial │ │ ├── Allrun-serial-pre │ │ ├── cht_onePipeHeatExchg.unv │ │ ├── constant │ │ │ ├── copper │ │ │ │ ├── radiationProperties │ │ │ │ └── thermophysicalProperties │ │ │ ├── g │ │ │ ├── regionProperties │ │ │ ├── shell │ │ │ │ ├── radiationProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ │ └── tube │ │ │ │ ├── radiationProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ ├── notes │ │ │ └── stability │ │ ├── run-serial │ │ └── system │ │ │ ├── controlDict │ │ │ ├── copper │ │ │ ├── changeDictionaryDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── shell │ │ │ ├── changeDictionaryDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── tube │ │ │ ├── changeDictionaryDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── expt_onePipe_heatExchg_salome_fineTet │ │ ├── 0.orig │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── rho │ │ ├── Allclean │ │ ├── Allrun-parallel │ │ ├── Allrun-serial │ │ ├── Allrun-serial-pre │ │ ├── constant │ │ │ ├── copper │ │ │ │ ├── radiationProperties │ │ │ │ └── thermophysicalProperties │ │ │ ├── g │ │ │ ├── regionProperties │ │ │ ├── shell │ │ │ │ ├── radiationProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ │ └── tube │ │ │ │ ├── radiationProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ ├── run-serial │ │ └── system │ │ │ ├── controlDict │ │ │ ├── copper │ │ │ ├── changeDictionaryDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── shell │ │ │ ├── changeDictionaryDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── tube │ │ │ ├── changeDictionaryDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ ├── expt_poly_onePipeHeatExchg │ │ ├── 0.orig │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── rho │ │ ├── Allclean │ │ ├── Allrun-parallel │ │ ├── Allrun-serial │ │ ├── Allrun-serial-pre │ │ ├── cht_onePipeHeatExchg.unv │ │ ├── constant │ │ │ ├── copper │ │ │ │ ├── radiationProperties │ │ │ │ └── thermophysicalProperties │ │ │ ├── g │ │ │ ├── regionProperties │ │ │ ├── shell │ │ │ │ ├── radiationProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── triSurface │ │ │ │ └── shell.stl │ │ │ └── tube │ │ │ │ ├── radiationProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ ├── run-serial │ │ └── system │ │ │ ├── controlDict │ │ │ ├── copper │ │ │ ├── changeDictionaryDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── shell │ │ │ ├── changeDictionaryDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── topoSetDict │ │ │ └── tube │ │ │ ├── changeDictionaryDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ └── salome_freeCAD │ │ ├── oneTubeHeatExchg.FCStd │ │ └── vidTut_onePipeHeatExchg.hdf ├── hot_sphere_in_oil │ ├── case_smagorinsky │ │ ├── 0.orig │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── rho │ │ ├── Allclean │ │ ├── Allrun-parallel │ │ ├── Allrun-serial │ │ ├── Allrun-serial-pre │ │ ├── buglog │ │ ├── constant │ │ │ ├── g │ │ │ ├── oil │ │ │ │ ├── radiationProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── regionProperties │ │ │ ├── sphere │ │ │ │ ├── radiationProperties │ │ │ │ └── thermophysicalProperties │ │ │ └── triSurface │ │ │ │ └── sphere_OpenFoam.stl │ │ ├── expt-preRun │ │ ├── exptLabel │ │ ├── reRun-serial │ │ ├── run-serial │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── decomposeParDict.6 │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── oil │ │ │ ├── changeDictionaryDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── snappyHexMeshDict │ │ │ ├── sphere │ │ │ ├── changeDictionaryDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── surfaceFeatureExtractDict │ ├── coarseMeshSphereOilLaminar │ │ ├── 0.orig │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── rho │ │ ├── Allclean │ │ ├── Allrun-parallel │ │ ├── Allrun-serial │ │ ├── Allrun-serial-pre │ │ ├── analysis │ │ │ ├── coarseMeshSphereResults.pdf │ │ │ ├── hot sphere in oil case.xlsx │ │ │ └── readme.md │ │ ├── constant │ │ │ ├── bottomAir │ │ │ │ ├── radiationProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── g │ │ │ ├── oil │ │ │ │ ├── radiationProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── regionProperties │ │ │ ├── sphere │ │ │ │ ├── radiationProperties │ │ │ │ └── thermophysicalProperties │ │ │ └── triSurface │ │ │ │ └── sphere_OpenFoam.stl │ │ ├── run-serial │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── decomposeParDict.6 │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── oil │ │ │ ├── changeDictionaryDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── snappyHexMeshDict │ │ │ ├── sphere │ │ │ ├── changeDictionaryDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── surfaceFeatureExtractDict │ ├── coarseMeshSphereOil_kOmegaSST │ │ ├── 0.orig │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── rho │ │ ├── Allclean │ │ ├── Allrun-parallel │ │ ├── Allrun-serial │ │ ├── Allrun-serial-pre │ │ ├── buglog │ │ ├── constant │ │ │ ├── g │ │ │ ├── oil │ │ │ │ ├── radiationProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── regionProperties │ │ │ ├── sphere │ │ │ │ ├── radiationProperties │ │ │ │ └── thermophysicalProperties │ │ │ └── triSurface │ │ │ │ └── sphere_OpenFoam.stl │ │ ├── expt-preRun │ │ ├── exptLabel │ │ ├── reRun-serial │ │ ├── run-serial │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── decomposeParDict.6 │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── oil │ │ │ ├── changeDictionaryDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── snappyHexMeshDict │ │ │ ├── sphere │ │ │ ├── changeDictionaryDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── surfaceFeatureExtractDict │ ├── coarseMeshSphereOil_kOmegaSSTIDDES │ │ ├── 0.orig │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── rho │ │ ├── Allclean │ │ ├── Allrun-parallel │ │ ├── Allrun-serial │ │ ├── Allrun-serial-pre │ │ ├── buglog │ │ ├── constant │ │ │ ├── g │ │ │ ├── oil │ │ │ │ ├── radiationProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── regionProperties │ │ │ ├── sphere │ │ │ │ ├── radiationProperties │ │ │ │ └── thermophysicalProperties │ │ │ └── triSurface │ │ │ │ └── sphere_OpenFoam.stl │ │ ├── expt-preRun │ │ ├── exptLabel │ │ ├── reRun-serial │ │ ├── run-serial │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── decomposeParDict.6 │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── oil │ │ │ ├── changeDictionaryDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── snappyHexMeshDict │ │ │ ├── sphere │ │ │ ├── changeDictionaryDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── surfaceFeatureExtractDict │ ├── fineMeshSphereOilLaminar │ │ ├── 0.orig │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── rho │ │ ├── Allclean │ │ ├── Allrun-parallel │ │ ├── Allrun-serial │ │ ├── Allrun-serial-pre │ │ ├── buglog │ │ ├── constant │ │ │ ├── g │ │ │ ├── oil │ │ │ │ ├── radiationProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── regionProperties │ │ │ ├── sphere │ │ │ │ ├── radiationProperties │ │ │ │ └── thermophysicalProperties │ │ │ └── triSurface │ │ │ │ └── sphere_OpenFoam.stl │ │ ├── expt-preRun │ │ ├── exptLabel │ │ ├── reRun-serial │ │ ├── run-serial │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── decomposeParDict.6 │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── oil │ │ │ ├── changeDictionaryDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── snappyHexMeshDict │ │ │ ├── sphere │ │ │ ├── changeDictionaryDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── surfaceFeatureExtractDict │ ├── fine_kOmegaSSTIDDES_parallel │ │ ├── 0.orig │ │ │ ├── T │ │ │ ├── U │ │ │ ├── alphat │ │ │ ├── epsilon │ │ │ ├── k │ │ │ ├── nut │ │ │ ├── omega │ │ │ ├── p │ │ │ ├── p_rgh │ │ │ └── rho │ │ ├── Allclean │ │ ├── Allrun-parallel │ │ ├── Allrun-serial │ │ ├── Allrun-serial-pre │ │ ├── buglog │ │ ├── constant │ │ │ ├── g │ │ │ ├── oil │ │ │ │ ├── radiationProperties │ │ │ │ ├── thermophysicalProperties │ │ │ │ └── turbulenceProperties │ │ │ ├── regionProperties │ │ │ ├── sphere │ │ │ │ ├── radiationProperties │ │ │ │ └── thermophysicalProperties │ │ │ └── triSurface │ │ │ │ └── sphere_OpenFoam.stl │ │ ├── expt-preRun │ │ ├── exptLabel │ │ ├── reRun-serial │ │ ├── run-serial │ │ └── system │ │ │ ├── blockMeshDict │ │ │ ├── controlDict │ │ │ ├── decomposeParDict │ │ │ ├── decomposeParDict.6 │ │ │ ├── fvSchemes │ │ │ ├── fvSolution │ │ │ ├── meshQualityDict │ │ │ ├── oil │ │ │ ├── changeDictionaryDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ ├── snappyHexMeshDict │ │ │ ├── sphere │ │ │ ├── changeDictionaryDict │ │ │ ├── decomposeParDict │ │ │ ├── fvSchemes │ │ │ └── fvSolution │ │ │ └── surfaceFeatureExtractDict │ └── resultsAnalysis │ │ ├── .~lock.hot sphere in oil case.xlsx# │ │ ├── Hot Sphere in Oil Results (laminar).pdf │ │ └── hot sphere in oil case.xlsx ├── jouleHeatingSolid │ ├── 0.orig │ │ └── solid │ │ │ ├── T │ │ │ ├── jouleHeatingSource:V │ │ │ ├── jouleHeatingSource:sigma │ │ │ └── p │ ├── Allclean │ ├── Allrun │ ├── Allrun-parallel │ ├── Allrun.pre │ ├── constant │ │ ├── g │ │ ├── regionProperties │ │ └── solid │ │ │ └── thermophysicalProperties │ ├── createGraphs │ └── system │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSolution │ │ └── solid │ │ ├── blockMeshDict │ │ ├── decomposeParDict │ │ ├── fvOptions │ │ ├── fvSchemes │ │ └── fvSolution ├── multiRegionHeaterRadiation │ ├── 0.orig │ │ ├── G │ │ ├── IDefault │ │ ├── T │ │ ├── U │ │ ├── epsilon │ │ ├── k │ │ ├── p │ │ ├── p_rgh │ │ └── qr │ ├── Allclean │ ├── Allrun │ ├── Allrun-parallel │ ├── Allrun.pre │ ├── constant │ │ ├── bottomAir │ │ │ ├── boundaryRadiationProperties │ │ │ ├── radiationProperties │ │ │ ├── thermophysicalProperties │ │ │ ├── turbulenceProperties │ │ │ └── viewFactorsDict │ │ ├── g │ │ ├── heater │ │ │ ├── radiationProperties │ │ │ └── thermophysicalProperties │ │ ├── leftSolid │ │ │ ├── radiationProperties │ │ │ └── thermophysicalProperties │ │ ├── regionProperties │ │ ├── rightSolid │ │ │ ├── radiationProperties │ │ │ └── thermophysicalProperties │ │ └── topAir │ │ │ ├── boundaryRadiationProperties │ │ │ ├── radiationProperties │ │ │ ├── thermophysicalProperties │ │ │ ├── turbulenceProperties │ │ │ └── viewFactorsDict │ └── system │ │ ├── blockMeshDict │ │ ├── bottomAir │ │ ├── changeDictionaryDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ ├── heater │ │ ├── changeDictionaryDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ │ ├── leftSolid │ │ ├── changeDictionaryDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ │ ├── rightSolid │ │ ├── changeDictionaryDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ │ ├── topAir │ │ ├── changeDictionaryDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ └── fvSolution │ │ └── topoSetDict └── snappyMultiRegionHeater │ ├── 0.orig │ ├── T │ ├── U │ ├── alphat │ ├── epsilon │ ├── k │ ├── p │ ├── p_rgh │ └── rho │ ├── Allclean │ ├── Allrun │ ├── Allrun-parallel │ ├── Allrun-serial │ ├── blockMesh.log │ ├── constant │ ├── bottomAir │ │ ├── radiationProperties │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ ├── g │ ├── heater │ │ ├── radiationProperties │ │ └── thermophysicalProperties │ ├── leftSolid │ │ ├── radiationProperties │ │ └── thermophysicalProperties │ ├── regionProperties │ ├── rightSolid │ │ ├── radiationProperties │ │ └── thermophysicalProperties │ ├── topAir │ │ ├── radiationProperties │ │ ├── thermophysicalProperties │ │ └── turbulenceProperties │ └── triSurface │ │ └── geom.stl │ ├── snappyHexMesh.log │ ├── splitMeshRegions.log │ ├── surfaceFeatureExtract.log │ └── system │ ├── blockMeshDict │ ├── bottomAir │ ├── changeDictionaryDict │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution │ ├── controlDict │ ├── decomposeParDict │ ├── decomposeParDict.6 │ ├── fvSchemes │ ├── fvSolution │ ├── heater │ ├── changeDictionaryDict │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution │ ├── leftSolid │ ├── changeDictionaryDict │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution │ ├── meshQualityDict │ ├── rightSolid │ ├── changeDictionaryDict │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution │ ├── snappyHexMeshDict │ ├── surfaceFeatureExtractDict │ └── topAir │ ├── changeDictionaryDict │ ├── decomposeParDict │ ├── fvSchemes │ └── fvSolution └── laplacianSnappyFoam_pipeCase ├── 0.orig ├── T ├── U ├── epsilon ├── k ├── nuTilda ├── nut ├── omega └── p ├── Allclean ├── constant ├── transportProperties ├── triSurface │ └── cylinder.stl └── turbulenceProperties ├── mesh-generation ├── run └── system ├── blockMeshDict ├── controlDict ├── createPatchDict ├── fvSchemes ├── fvSolution ├── meshQualityDict ├── snappyHexMeshDict └── topoSetDict /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/README.md -------------------------------------------------------------------------------- /benchMark_Free_Convection/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/0/T -------------------------------------------------------------------------------- /benchMark_Free_Convection/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/0/U -------------------------------------------------------------------------------- /benchMark_Free_Convection/0/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/0/alphat -------------------------------------------------------------------------------- /benchMark_Free_Convection/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/0/epsilon -------------------------------------------------------------------------------- /benchMark_Free_Convection/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/0/k -------------------------------------------------------------------------------- /benchMark_Free_Convection/0/nuTilda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/0/nuTilda -------------------------------------------------------------------------------- /benchMark_Free_Convection/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/0/nut -------------------------------------------------------------------------------- /benchMark_Free_Convection/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/0/omega -------------------------------------------------------------------------------- /benchMark_Free_Convection/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/0/p -------------------------------------------------------------------------------- /benchMark_Free_Convection/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/0/p_rgh -------------------------------------------------------------------------------- /benchMark_Free_Convection/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/Allclean -------------------------------------------------------------------------------- /benchMark_Free_Convection/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/Allrun -------------------------------------------------------------------------------- /benchMark_Free_Convection/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/README -------------------------------------------------------------------------------- /benchMark_Free_Convection/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/constant/g -------------------------------------------------------------------------------- /benchMark_Free_Convection/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/constant/thermophysicalProperties -------------------------------------------------------------------------------- /benchMark_Free_Convection/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/constant/turbulenceProperties -------------------------------------------------------------------------------- /benchMark_Free_Convection/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/system/blockMeshDict -------------------------------------------------------------------------------- /benchMark_Free_Convection/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/system/controlDict -------------------------------------------------------------------------------- /benchMark_Free_Convection/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/system/fvSchemes -------------------------------------------------------------------------------- /benchMark_Free_Convection/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/system/fvSolution -------------------------------------------------------------------------------- /benchMark_Free_Convection/system/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/system/sample -------------------------------------------------------------------------------- /benchMark_Free_Convection/validation/createGraphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/validation/createGraphs -------------------------------------------------------------------------------- /benchMark_Free_Convection/validation/exptData/mt_z0_10_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/validation/exptData/mt_z0_10_lo.dat -------------------------------------------------------------------------------- /benchMark_Free_Convection/validation/exptData/mt_z0_30_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/validation/exptData/mt_z0_30_lo.dat -------------------------------------------------------------------------------- /benchMark_Free_Convection/validation/exptData/mt_z0_40_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/validation/exptData/mt_z0_40_lo.dat -------------------------------------------------------------------------------- /benchMark_Free_Convection/validation/exptData/mt_z0_50_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/validation/exptData/mt_z0_50_lo.dat -------------------------------------------------------------------------------- /benchMark_Free_Convection/validation/exptData/mt_z0_60_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/validation/exptData/mt_z0_60_lo.dat -------------------------------------------------------------------------------- /benchMark_Free_Convection/validation/exptData/mt_z0_70_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/validation/exptData/mt_z0_70_lo.dat -------------------------------------------------------------------------------- /benchMark_Free_Convection/validation/exptData/mt_z0_90_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/validation/exptData/mt_z0_90_lo.dat -------------------------------------------------------------------------------- /benchMark_Free_Convection/validation/exptData/mv_z0_10_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/validation/exptData/mv_z0_10_lo.dat -------------------------------------------------------------------------------- /benchMark_Free_Convection/validation/exptData/mv_z0_30_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/validation/exptData/mv_z0_30_lo.dat -------------------------------------------------------------------------------- /benchMark_Free_Convection/validation/exptData/mv_z0_40_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/validation/exptData/mv_z0_40_lo.dat -------------------------------------------------------------------------------- /benchMark_Free_Convection/validation/exptData/mv_z0_50_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/validation/exptData/mv_z0_50_lo.dat -------------------------------------------------------------------------------- /benchMark_Free_Convection/validation/exptData/mv_z0_60_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/validation/exptData/mv_z0_60_lo.dat -------------------------------------------------------------------------------- /benchMark_Free_Convection/validation/exptData/mv_z0_70_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/validation/exptData/mv_z0_70_lo.dat -------------------------------------------------------------------------------- /benchMark_Free_Convection/validation/exptData/mv_z0_90_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/benchMark_Free_Convection/validation/exptData/mv_z0_90_lo.dat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/T -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/U -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/alphat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/epsilon -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/k -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/nut -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/omega -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/p -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/0.orig/p_rgh -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/Allclean -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/Allrun -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/constant/g -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/constant/transportProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/constant/turbulenceProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/mesh_BL_tet.unv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/mesh_BL_tet.unv -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/salome-mesh-gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/salome-mesh-gen -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/system/blockMeshDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/system/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/system/changeDictionaryDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/system/controlDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/system/decomposeParDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/system/fvSchemes -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/system/fvSolution -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/boussinesq_salome_HeatExchg/system/setFieldsDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/T -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/U -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/alphat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/epsilon -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/k -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/nut -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/omega -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/p -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/0/p_rgh -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/Allclean -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/Allrun -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/README -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/constant/g -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/constant/thermophysicalProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/constant/turbulenceProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/system/blockMeshDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/system/controlDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/system/fvSchemes -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/system/fvSolution -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/system/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/system/sample -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/createGraphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/createGraphs -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mt_z0_10_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mt_z0_10_lo.dat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mt_z0_30_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mt_z0_30_lo.dat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mt_z0_40_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mt_z0_40_lo.dat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mt_z0_50_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mt_z0_50_lo.dat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mt_z0_60_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mt_z0_60_lo.dat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mt_z0_70_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mt_z0_70_lo.dat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mt_z0_90_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mt_z0_90_lo.dat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mv_z0_10_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mv_z0_10_lo.dat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mv_z0_30_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mv_z0_30_lo.dat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mv_z0_40_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mv_z0_40_lo.dat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mv_z0_50_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mv_z0_50_lo.dat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mv_z0_60_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mv_z0_60_lo.dat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mv_z0_70_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mv_z0_70_lo.dat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mv_z0_90_lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/buoyantCavity/validation/exptData/mv_z0_90_lo.dat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/CH4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/CH4 -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/H2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/H2 -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/H2O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/H2O -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/N2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/N2 -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/O2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/O2 -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/T -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/U -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/Ydefault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/Ydefault -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/alphat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/epsilon -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/k -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/nut -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/0/p -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/Allclean -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/Allrun -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/constant/chemistryProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/constant/chemistryProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/constant/combustionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/constant/combustionProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/constant/g -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/constant/inlet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/constant/inlet.csv -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/constant/reactionsGRI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/constant/reactionsGRI -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/constant/thermo.compressibleGasGRI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/constant/thermo.compressibleGasGRI -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/constant/thermophysicalProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/constant/turbulenceProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/system/blockMeshDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/system/controlDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/system/decomposeParDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/system/fvSchemes -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/chockedNozzle/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/chockedNozzle/system/fvSolution -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/T -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/U -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/alphat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/epsilon -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/k -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/nut -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/omega -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/p -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/0/p_rgh -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/Allclean -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/Allrun -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/constant/g -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/constant/temp_profile.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/constant/temp_profile.csv -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/constant/thermophysicalProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/constant/turbulenceProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/system/blockMeshDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/system/controlDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/system/fvSchemes -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/heatfluxtimevary/system/fvSolution -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/0.orig/T -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/0.orig/U -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/0.orig/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/0.orig/alphat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/0.orig/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/0.orig/epsilon -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/0.orig/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/0.orig/k -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/0.orig/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/0.orig/nut -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/0.orig/p -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/0.orig/p_rgh -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/Allclean -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/Allrun -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/constant/g -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/constant/thermophysicalProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/constant/turbulenceProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/system/blockMeshDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/system/controlDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/system/fvSchemes -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/system/fvSolution -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/hotRoom/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/hotRoom/system/setFieldsDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/0.orig/U -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/0.orig/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/0.orig/epsilon -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/0.orig/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/0.orig/k -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/0.orig/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/0.orig/nut -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/0.orig/p -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/Allclean -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/Allrun -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/Allrun.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/Allrun.pre -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/constant/dynamicMeshDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/constant/transportProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/constant/triSurface/innerCylinder.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/constant/triSurface/innerCylinder.obj -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/constant/triSurface/innerCylinderSmall.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/constant/triSurface/innerCylinderSmall.obj -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/constant/triSurface/outerCylinder.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/constant/triSurface/outerCylinder.obj -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/constant/triSurface/propellerStem1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/constant/triSurface/propellerStem1.obj -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/constant/triSurface/propellerStem2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/constant/triSurface/propellerStem2.obj -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/constant/triSurface/propellerStem3.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/constant/triSurface/propellerStem3.obj -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/constant/turbulenceProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/system/AMIWeights: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/system/AMIWeights -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/system/blockMeshDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/system/controlDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/system/createInletOutletSets.topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/system/createInletOutletSets.topoSetDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/system/createPatchDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/system/createPatchDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/system/decomposeParDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/system/forces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/system/forces -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/system/fvSchemes -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/system/fvSolution -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/system/snappyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/system/snappyHexMeshDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/system/surfaceFeatureExtractDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/system/surfaceFeatureExtractDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/system/surfaceFeatureExtractDictDefaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/system/surfaceFeatureExtractDictDefaults -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/propeller/system/surfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/propeller/system/surfaces -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/T -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/U -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/alphat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/epsilon -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/k -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/nut -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/omega -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/p -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/0.orig/p_rgh -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/Allclean -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/Allrun -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/constant/g -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/constant/thermophysicalProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/constant/turbulenceProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/mesh_BL_tet.unv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/mesh_BL_tet.unv -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/salome-mesh-gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/salome-mesh-gen -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/system/blockMeshDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/system/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/system/changeDictionaryDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/system/controlDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/system/decomposeParDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/system/fvSchemes -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/system/fvSolution -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/salomePolyHeatExchg/system/setFieldsDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/0/IDefault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/0/IDefault -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/0/T -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/0/U -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/0/p -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/0/p_rgh -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/Allclean -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/Allrun -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/constant/boundaryRadiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/constant/boundaryRadiationProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/constant/g -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/constant/radiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/constant/radiationProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/constant/thermophysicalProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/constant/turbulenceProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/system/blockMeshDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/system/controlDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/system/fvSchemes -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/thermocoupleTestCase/system/fvSolution -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/T -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/U -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/alphat -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/epsilon -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/k -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/nut -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/omega -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/p -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/0/p_rgh -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/Allclean -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/Allrun -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/buglog_timevaryingTemp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/buglog_timevaryingTemp -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/constant/g -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/constant/temp_profile.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/constant/temp_profile.csv -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/constant/thermophysicalProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/constant/turbulenceProperties -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/system/blockMeshDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/system/controlDict -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/system/fvSchemes -------------------------------------------------------------------------------- /buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/buoyantPimpleFoam_timevaryingBC/timevaryingCavityFoam/system/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/0.orig/solid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/0.orig/solid/T -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/0.orig/solid/jouleHeatingSource:V: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/0.orig/solid/jouleHeatingSource:V -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/0.orig/solid/jouleHeatingSource:sigma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/0.orig/solid/jouleHeatingSource:sigma -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/0.orig/solid/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/0.orig/solid/p -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/Allclean -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/Allrun -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/Allrun-parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/Allrun-parallel -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/Allrun.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/Allrun.pre -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/constant/g -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/constant/regionProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/constant/solid/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/constant/solid/thermophysicalProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/createGraphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/createGraphs -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/system/controlDict -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/system/decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/system/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/system/solid/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/system/solid/blockMeshDict -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/system/solid/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/system/solid/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/system/solid/fvOptions -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/system/solid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/system/solid/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/copy_jouleHeatingSolid/system/solid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/copy_jouleHeatingSolid/system/solid/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/T -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/U -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/alphat -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/epsilon -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/k -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/nut -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/omega -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/p -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/p_rgh -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/0.orig/rho -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/Allclean -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/Allrun-parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/Allrun-parallel -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/Allrun-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/Allrun-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/Allrun-serial-pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/Allrun-serial-pre -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/cht_onePipeHeatExchg.unv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/cht_onePipeHeatExchg.unv -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/constant/g -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/constant/regionProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/notes/stability: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/notes/stability -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/run-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/run-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/controlDict -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/copper/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/copper/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/copper/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/copper/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/shell/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/shell/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/shell/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/shell/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/tube/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/tube/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/tube/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipeHeatExchg_salome/system/tube/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/T -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/U -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/alphat -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/epsilon -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/k -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/nut -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/omega -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/p -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/p_rgh -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/0.orig/rho -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/Allclean -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/Allrun-parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/Allrun-parallel -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/Allrun-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/Allrun-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/Allrun-serial-pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/Allrun-serial-pre -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/constant/g -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/run-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/run-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/system/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_onePipe_heatExchg_salome_fineTet/system/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/T -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/U -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/alphat -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/epsilon -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/k -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/nut -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/omega -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/p -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/p_rgh -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/0.orig/rho -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/Allclean -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/Allrun-parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/Allrun-parallel -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/Allrun-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/Allrun-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/Allrun-serial-pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/Allrun-serial-pre -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/cht_onePipeHeatExchg.unv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/cht_onePipeHeatExchg.unv -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/constant/g -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/constant/regionProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/run-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/run-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/controlDict -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/copper/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/copper/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/copper/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/copper/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/shell/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/shell/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/shell/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/shell/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/topoSetDict -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/tube/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/tube/decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/tube/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/tube/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/tube/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/expt_poly_onePipeHeatExchg/system/tube/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/salome_freeCAD/oneTubeHeatExchg.FCStd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/salome_freeCAD/oneTubeHeatExchg.FCStd -------------------------------------------------------------------------------- /chtMultiregionFoam/heatExchangers/salome_freeCAD/vidTut_onePipeHeatExchg.hdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/heatExchangers/salome_freeCAD/vidTut_onePipeHeatExchg.hdf -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/T -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/U -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/alphat -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/epsilon -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/k -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/nut -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/p -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/p_rgh -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/0.orig/rho -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/Allclean -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/Allrun-parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/Allrun-parallel -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/Allrun-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/Allrun-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/Allrun-serial-pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/Allrun-serial-pre -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/buglog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/buglog -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/constant/g -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/constant/oil/radiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/constant/oil/radiationProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/constant/oil/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/constant/oil/turbulenceProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/constant/regionProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/constant/sphere/radiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/constant/sphere/radiationProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/expt-preRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/expt-preRun -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/exptLabel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/exptLabel -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/reRun-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/reRun-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/run-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/run-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/blockMeshDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/controlDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/decomposeParDict.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/decomposeParDict.6 -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/meshQualityDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/meshQualityDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/oil/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/oil/changeDictionaryDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/oil/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/oil/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/oil/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/oil/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/snappyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/snappyHexMeshDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/sphere/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/sphere/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/sphere/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/sphere/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/surfaceFeatureExtractDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/case_smagorinsky/system/surfaceFeatureExtractDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/0.orig/T -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/0.orig/U -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/0.orig/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/0.orig/alphat -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/0.orig/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/0.orig/epsilon -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/0.orig/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/0.orig/k -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/0.orig/p -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/0.orig/p_rgh -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/0.orig/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/0.orig/rho -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/Allclean -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/Allrun-parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/Allrun-parallel -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/Allrun-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/Allrun-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/Allrun-serial-pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/Allrun-serial-pre -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/analysis/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/analysis/readme.md -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/constant/g -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/run-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/run-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/system/blockMeshDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/system/controlDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/system/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/system/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/system/meshQualityDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/system/meshQualityDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/system/oil/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/system/oil/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/system/oil/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOilLaminar/system/oil/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/T -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/U -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/alphat -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/epsilon -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/k -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/nut -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/omega -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/p -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/p_rgh -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/0.orig/rho -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/Allclean -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/Allrun-parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/Allrun-parallel -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/Allrun-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/Allrun-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/Allrun-serial-pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/Allrun-serial-pre -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/buglog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/buglog -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/constant/g -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/expt-preRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/expt-preRun -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/exptLabel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/exptLabel -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/reRun-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/reRun-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/run-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/run-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/system/controlDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/system/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSST/system/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/T -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/U -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/alphat -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/epsilon -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/k -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/nut -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/omega -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/p -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/p_rgh -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/0.orig/rho -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/Allclean -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/Allrun-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/Allrun-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/buglog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/buglog -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/constant/g -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/expt-preRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/expt-preRun -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/exptLabel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/exptLabel -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/reRun-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/reRun-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/run-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/coarseMeshSphereOil_kOmegaSSTIDDES/run-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/0.orig/T -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/0.orig/U -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/0.orig/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/0.orig/alphat -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/0.orig/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/0.orig/epsilon -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/0.orig/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/0.orig/k -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/0.orig/p -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/0.orig/p_rgh -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/0.orig/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/0.orig/rho -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/Allclean -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/Allrun-parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/Allrun-parallel -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/Allrun-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/Allrun-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/Allrun-serial-pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/Allrun-serial-pre -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/buglog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/buglog -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/constant/g -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/expt-preRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/expt-preRun -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/exptLabel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/exptLabel -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/reRun-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/reRun-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/run-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/run-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/blockMeshDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/controlDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/meshQualityDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/meshQualityDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/oil/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/oil/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/oil/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/oil/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/snappyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/snappyHexMeshDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/sphere/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/sphere/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/sphere/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fineMeshSphereOilLaminar/system/sphere/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/T -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/U -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/alphat -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/epsilon -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/k -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/nut -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/omega -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/p -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/p_rgh -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/0.orig/rho -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/Allclean -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/Allrun-parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/Allrun-parallel -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/Allrun-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/Allrun-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/Allrun-serial-pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/Allrun-serial-pre -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/buglog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/buglog -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/constant/g -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/expt-preRun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/expt-preRun -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/exptLabel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/exptLabel -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/reRun-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/reRun-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/run-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/run-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/system/blockMeshDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/system/controlDict -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/system/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/system/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/system/oil/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/fine_kOmegaSSTIDDES_parallel/system/oil/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/hot_sphere_in_oil/resultsAnalysis/hot sphere in oil case.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/hot_sphere_in_oil/resultsAnalysis/hot sphere in oil case.xlsx -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/0.orig/solid/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/0.orig/solid/T -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/0.orig/solid/jouleHeatingSource:V: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/0.orig/solid/jouleHeatingSource:V -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/0.orig/solid/jouleHeatingSource:sigma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/0.orig/solid/jouleHeatingSource:sigma -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/0.orig/solid/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/0.orig/solid/p -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/Allclean -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/Allrun -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/Allrun-parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/Allrun-parallel -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/Allrun.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/Allrun.pre -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/constant/g -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/constant/regionProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/constant/solid/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/constant/solid/thermophysicalProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/createGraphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/createGraphs -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/system/controlDict -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/system/decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/system/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/system/solid/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/system/solid/blockMeshDict -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/system/solid/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/system/solid/fvOptions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/system/solid/fvOptions -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/system/solid/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/system/solid/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/jouleHeatingSolid/system/solid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/jouleHeatingSolid/system/solid/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/G: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/G -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/IDefault: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/IDefault -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/T -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/U -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/epsilon -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/k -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/p -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/p_rgh -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/qr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/0.orig/qr -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/Allclean -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/Allrun -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/Allrun-parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/Allrun-parallel -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/Allrun.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/Allrun.pre -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/constant/bottomAir/radiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/constant/bottomAir/radiationProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/constant/bottomAir/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/constant/bottomAir/turbulenceProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/constant/bottomAir/viewFactorsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/constant/bottomAir/viewFactorsDict -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/constant/g -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/constant/heater/radiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/constant/heater/radiationProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/constant/heater/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/constant/heater/thermophysicalProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/constant/leftSolid/radiationProperties: -------------------------------------------------------------------------------- 1 | ../heater/radiationProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/constant/leftSolid/thermophysicalProperties: -------------------------------------------------------------------------------- 1 | ../heater/thermophysicalProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/constant/regionProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/constant/rightSolid/radiationProperties: -------------------------------------------------------------------------------- 1 | ../heater/radiationProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/constant/rightSolid/thermophysicalProperties: -------------------------------------------------------------------------------- 1 | ../heater/thermophysicalProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/constant/topAir/radiationProperties: -------------------------------------------------------------------------------- 1 | ../bottomAir/radiationProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/constant/topAir/thermophysicalProperties: -------------------------------------------------------------------------------- 1 | ../bottomAir/thermophysicalProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/constant/topAir/turbulenceProperties: -------------------------------------------------------------------------------- 1 | ../bottomAir/turbulenceProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/constant/topAir/viewFactorsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/constant/topAir/viewFactorsDict -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/blockMeshDict -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/bottomAir/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/bottomAir/changeDictionaryDict -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/bottomAir/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/bottomAir/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/bottomAir/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/bottomAir/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/bottomAir/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/controlDict -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/heater/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/heater/changeDictionaryDict -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/heater/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/heater/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/heater/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/heater/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/heater/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/leftSolid/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/leftSolid/changeDictionaryDict -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/leftSolid/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/leftSolid/fvSchemes: -------------------------------------------------------------------------------- 1 | ../heater/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/leftSolid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/leftSolid/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/rightSolid/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/rightSolid/changeDictionaryDict -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/rightSolid/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/rightSolid/fvSchemes: -------------------------------------------------------------------------------- 1 | ../heater/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/rightSolid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/rightSolid/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/topAir/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/topAir/changeDictionaryDict -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/topAir/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/topAir/fvSchemes: -------------------------------------------------------------------------------- 1 | ../bottomAir/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/topAir/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/topAir/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/multiRegionHeaterRadiation/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/multiRegionHeaterRadiation/system/topoSetDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/0.orig/T -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/0.orig/U -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/0.orig/alphat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/0.orig/alphat -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/0.orig/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/0.orig/epsilon -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/0.orig/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/0.orig/k -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/0.orig/p -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/0.orig/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/0.orig/p_rgh -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/0.orig/rho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/0.orig/rho -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/Allclean -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/Allrun: -------------------------------------------------------------------------------- 1 | Allrun-parallel -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/Allrun-parallel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/Allrun-parallel -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/Allrun-serial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/Allrun-serial -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/blockMesh.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/blockMesh.log -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/constant/bottomAir/radiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/constant/bottomAir/radiationProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/constant/bottomAir/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/constant/bottomAir/thermophysicalProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/constant/bottomAir/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/constant/bottomAir/turbulenceProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/constant/g -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/constant/heater/radiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/constant/heater/radiationProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/constant/heater/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/constant/heater/thermophysicalProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/constant/leftSolid/radiationProperties: -------------------------------------------------------------------------------- 1 | ../heater/radiationProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/constant/leftSolid/thermophysicalProperties: -------------------------------------------------------------------------------- 1 | ../heater/thermophysicalProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/constant/regionProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/constant/regionProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/constant/rightSolid/radiationProperties: -------------------------------------------------------------------------------- 1 | ../heater/radiationProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/constant/rightSolid/thermophysicalProperties: -------------------------------------------------------------------------------- 1 | ../heater/thermophysicalProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/constant/topAir/radiationProperties: -------------------------------------------------------------------------------- 1 | ../bottomAir/radiationProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/constant/topAir/thermophysicalProperties: -------------------------------------------------------------------------------- 1 | ../bottomAir/thermophysicalProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/constant/topAir/turbulenceProperties: -------------------------------------------------------------------------------- 1 | ../bottomAir/turbulenceProperties -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/constant/triSurface/geom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/constant/triSurface/geom.stl -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/snappyHexMesh.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/snappyHexMesh.log -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/splitMeshRegions.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/splitMeshRegions.log -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/surfaceFeatureExtract.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/surfaceFeatureExtract.log -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/blockMeshDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/bottomAir/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/bottomAir/changeDictionaryDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/bottomAir/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/bottomAir/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/bottomAir/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/bottomAir/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/bottomAir/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/controlDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/decomposeParDict.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/decomposeParDict.6 -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/heater/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/heater/changeDictionaryDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/heater/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/heater/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/heater/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/heater/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/heater/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/leftSolid/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/leftSolid/changeDictionaryDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/leftSolid/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../heater/decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/leftSolid/fvSchemes: -------------------------------------------------------------------------------- 1 | ../heater/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/leftSolid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/leftSolid/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/meshQualityDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/meshQualityDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/rightSolid/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/rightSolid/changeDictionaryDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/rightSolid/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../heater/decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/rightSolid/fvSchemes: -------------------------------------------------------------------------------- 1 | ../heater/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/rightSolid/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/rightSolid/fvSolution -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/snappyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/snappyHexMeshDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/surfaceFeatureExtractDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/surfaceFeatureExtractDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/topAir/changeDictionaryDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/topAir/changeDictionaryDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/topAir/decomposeParDict: -------------------------------------------------------------------------------- 1 | ../bottomAir/decomposeParDict -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/topAir/fvSchemes: -------------------------------------------------------------------------------- 1 | ../bottomAir/fvSchemes -------------------------------------------------------------------------------- /chtMultiregionFoam/snappyMultiRegionHeater/system/topAir/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/chtMultiregionFoam/snappyMultiRegionHeater/system/topAir/fvSolution -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/0.orig/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/0.orig/T -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/0.orig/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/0.orig/U -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/0.orig/epsilon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/0.orig/epsilon -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/0.orig/k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/0.orig/k -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/0.orig/nuTilda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/0.orig/nuTilda -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/0.orig/nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/0.orig/nut -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/0.orig/omega: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/0.orig/omega -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/0.orig/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/0.orig/p -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/Allclean -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/constant/transportProperties -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/constant/triSurface/cylinder.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/constant/triSurface/cylinder.stl -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/constant/turbulenceProperties -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/mesh-generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/mesh-generation -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/run -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/system/blockMeshDict -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/system/controlDict -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/system/createPatchDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/system/createPatchDict -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/system/fvSchemes -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/system/fvSolution -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/system/meshQualityDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/system/meshQualityDict -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/system/snappyHexMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/system/snappyHexMeshDict -------------------------------------------------------------------------------- /laplacianSnappyFoam_pipeCase/system/topoSetDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodoreOnzGit/OpenFoam_heatTrf_YouTube/HEAD/laplacianSnappyFoam_pipeCase/system/topoSetDict --------------------------------------------------------------------------------