├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── build.yml │ ├── linkcheck.yml │ └── markdownlint.yml ├── .gitignore ├── Allwclean ├── Allwmake ├── LICENSE ├── README.md ├── applications ├── Allwclean ├── Allwmake ├── solvers │ ├── compressibleLaserbeamFoam │ │ ├── Allwclean │ │ ├── Allwmake │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── TEqn.H │ │ ├── UEqn.H │ │ ├── VoF │ │ │ ├── alphaCourantNo.H │ │ │ ├── alphaEqn.H │ │ │ ├── alphaEqnSubCycle.H │ │ │ ├── createAlphaFluxes.H │ │ │ ├── setDeltaT.H │ │ │ └── setRDeltaT.H │ │ ├── compressibleLaserbeamFoam.C │ │ ├── correctPhi.esi.H │ │ ├── createFields.H │ │ ├── initCorrectPhi.H │ │ ├── multiphaseMixtureThermo │ │ │ ├── Make │ │ │ │ ├── files │ │ │ │ └── options │ │ │ ├── alphaContactAngle │ │ │ │ ├── alphaContactAngleFvPatchScalarField.C │ │ │ │ └── alphaContactAngleFvPatchScalarField.H │ │ │ ├── multiphaseMixtureThermo.C │ │ │ ├── multiphaseMixtureThermo.H │ │ │ └── phaseModel │ │ │ │ ├── phaseModel.C │ │ │ │ └── phaseModel.H │ │ ├── pEqn.H │ │ ├── readMeltingControls.H │ │ └── update.H │ ├── laserMeltFoam │ │ ├── Make │ │ │ ├── files │ │ │ └── options │ │ ├── README.md │ │ ├── TEqn.H │ │ ├── UEqn.H │ │ ├── UEqnAddPorosity.H │ │ ├── alphaControls.H │ │ ├── alphaEqn.H │ │ ├── alphaEqnSubCycle.H │ │ ├── alphaSuSp.H │ │ ├── correctPhi.lowercase.H │ │ ├── createCellColumns.H │ │ ├── createFields.H │ │ ├── createPorosity.H │ │ ├── example_sim.gif │ │ ├── initCorrectPhi.H │ │ ├── laserMeltFoam.C │ │ ├── liquidFraction.H │ │ ├── liquidFractionFunctions.C │ │ ├── liquidFractionFunctions.H │ │ ├── pEqn.H │ │ ├── porousAlphaCourantNo.H │ │ ├── porousCourantNo.H │ │ ├── readLaserProperties.H │ │ ├── readThermalProperties.H │ │ ├── rhofs.H │ │ ├── source.H │ │ ├── updateFLB.H │ │ ├── updateLaser.H │ │ ├── updateProperties.H │ │ └── updatePropertiesLaser.H │ └── laserbeamFoam │ │ ├── MULES │ │ ├── CourantNo.H │ │ ├── alphaControls.H │ │ ├── alphaCourantNo.H │ │ ├── alphaEqn.H │ │ ├── alphaEqnSubCycle.H │ │ ├── alphaSuSp.H │ │ ├── createAlphaFluxes.H │ │ ├── firstIter.H │ │ ├── setDeltaT.H │ │ └── setRDeltaT.H │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── TEqn.H │ │ ├── UEqn.H │ │ ├── correctPhi.esi.H │ │ ├── createFields.H │ │ ├── initCorrectPhi.H │ │ ├── isoAdvector │ │ ├── alphaControls.H │ │ ├── alphaEqn.H │ │ ├── alphaEqnSubCycle.H │ │ ├── alphaSuSp.H │ │ ├── createPorosity.H │ │ ├── firstIter.H │ │ ├── porousAlphaCourantNo.H │ │ ├── porousCourantNo.H │ │ └── setDeltaT.H │ │ ├── laserbeamFoam.C │ │ ├── pEqn.H │ │ ├── readControls.H │ │ ├── rhofs.H │ │ ├── setInitialDeltaT.H │ │ ├── updateKappaCp.H │ │ └── updateProps.H └── utilities │ └── setSolidFraction │ ├── Make │ ├── files │ └── options │ └── setSolidFraction.C ├── documentation └── LaserbeamFoam___V2.pdf ├── images ├── Dissimilar_laser.png ├── Powder.png ├── laserbeamFoam_AMR.mp4 ├── t200usT.png └── t=0.042s.png ├── src ├── Allwclean ├── Allwmake ├── geometricVoF │ ├── Allwmake │ ├── Make │ │ ├── files │ │ └── options │ ├── advectionSchemes │ │ └── isoAdvection │ │ │ ├── isoAdvection.C │ │ │ ├── isoAdvection.H │ │ │ └── isoAdvectionTemplates.C │ ├── cellCuts │ │ ├── cutCell │ │ │ ├── cutCell.C │ │ │ ├── cutCell.H │ │ │ ├── cutCellIso.C │ │ │ ├── cutCellIso.H │ │ │ ├── cutCellPLIC.C │ │ │ └── cutCellPLIC.H │ │ └── cutFace │ │ │ ├── cutFace.C │ │ │ ├── cutFace.H │ │ │ ├── cutFaceAdvect.C │ │ │ ├── cutFaceAdvect.H │ │ │ ├── cutFaceIso.C │ │ │ ├── cutFaceIso.H │ │ │ ├── cutFacePLIC.C │ │ │ └── cutFacePLIC.H │ ├── log.Allwmake.geometricVoF │ ├── reconstructedDistanceFunction │ │ ├── reconstructedDistanceFunction.C │ │ └── reconstructedDistanceFunction.H │ ├── reconstructionSchemes │ │ ├── isoSchemes │ │ │ └── isoAlpha │ │ │ │ ├── isoAlpha.C │ │ │ │ └── isoAlpha.H │ │ ├── plicSchemes │ │ │ ├── gradAlpha │ │ │ │ ├── gradAlpha.C │ │ │ │ └── gradAlpha.H │ │ │ └── plicRDF │ │ │ │ ├── plicRDF.C │ │ │ │ └── plicRDF.H │ │ ├── reconstructionSchemes.C │ │ ├── reconstructionSchemes.H │ │ └── reconstructionSchemesNew.C │ ├── sampledInterface │ │ ├── sampledInterface.C │ │ ├── sampledInterface.H │ │ └── sampledInterfaceTemplates.C │ └── surfaceIterators │ │ ├── surfaceIteratorIso.C │ │ ├── surfaceIteratorIso.H │ │ ├── surfaceIteratorPLIC.C │ │ └── surfaceIteratorPLIC.H ├── laserHeatSource │ ├── Allwmake │ ├── Make │ │ ├── files │ │ └── options │ ├── compactRay.C │ ├── compactRay.H │ ├── findLocalCell.H │ ├── laserHeatSource.C │ └── laserHeatSource.H ├── transportModels │ └── incompressible │ │ ├── Allwmake │ │ ├── Make │ │ ├── files │ │ └── options │ │ ├── incompressibleTwoPhaseMixture │ │ ├── incompressibleTwoPhaseMixture.C │ │ └── incompressibleTwoPhaseMixture.H │ │ ├── laserThreePhaseMixture │ │ ├── laserThreePhaseMixture.C │ │ └── laserThreePhaseMixture.H │ │ ├── log.Allwmake.transportModels │ │ ├── singlePhaseTransportModel │ │ ├── singlePhaseTransportModel.C │ │ └── singlePhaseTransportModel.H │ │ ├── transportModel │ │ ├── transportModel.C │ │ └── transportModel.H │ │ ├── transportModelNew │ │ ├── transportModelNew.C │ │ └── transportModelNew.H │ │ └── viscosityModels │ │ ├── Arrhenius │ │ ├── Arrhenius.C │ │ ├── Arrhenius.H │ │ ├── Arrheniuss.C │ │ └── makeArrheniusTypes.H │ │ ├── BirdCarreau │ │ ├── BirdCarreau.C │ │ └── BirdCarreau.H │ │ ├── Casson │ │ ├── Casson.C │ │ └── Casson.H │ │ ├── CrossPowerLaw │ │ ├── CrossPowerLaw.C │ │ └── CrossPowerLaw.H │ │ ├── HerschelBulkley │ │ ├── HerschelBulkley.C │ │ └── HerschelBulkley.H │ │ ├── Newtonian │ │ ├── Newtonian.C │ │ └── Newtonian.H │ │ ├── powerLaw │ │ ├── powerLaw.C │ │ └── powerLaw.H │ │ ├── strainRateFunction │ │ ├── strainRateFunction.C │ │ └── strainRateFunction.H │ │ └── viscosityModel │ │ ├── viscosityModel.C │ │ ├── viscosityModel.H │ │ └── viscosityModelNew.C └── turbulenceModel │ ├── Allwmake │ ├── Make │ ├── files │ └── options │ ├── laminar │ ├── laminar.C │ └── laminar.H │ ├── turbulenceModelNew.C │ └── turbulenceModelNew.H └── tutorials ├── Allclean ├── Alltest ├── compressiblelaserbeamFoam ├── LPBF_small_vapour │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── LaserProperties │ │ ├── dynamicMeshDict │ │ ├── g │ │ ├── location │ │ ├── thermophysicalProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.metal1 │ │ ├── thermophysicalProperties.metal1vapour │ │ ├── timeVsLaserPosition │ │ ├── timeVsLaserPower │ │ └── turbulenceProperties │ ├── initial │ │ ├── Laser_boundary │ │ ├── T │ │ ├── T.air │ │ ├── T.metal1 │ │ ├── T.metal1vapour │ │ ├── U │ │ ├── alpha.air │ │ ├── alpha.metal1 │ │ ├── alpha.metal1vapour │ │ ├── p │ │ └── p_rgh │ └── system │ │ ├── bedPlateDict │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── LaserCase │ ├── constant │ │ ├── LaserProperties │ │ ├── dynamicMeshDict │ │ ├── g │ │ ├── thermophysicalProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.metal1 │ │ ├── thermophysicalProperties.metal1vapour │ │ ├── thermophysicalProperties.metal2 │ │ ├── thermophysicalProperties.metal2vapour │ │ ├── thermophysicalProperties.metal3 │ │ ├── thermophysicalProperties.metal3vapour │ │ ├── thermophysicalProperties.metal4 │ │ ├── thermophysicalProperties.metal4vapour │ │ ├── timeVsLaserPosition │ │ ├── timeVsLaserPower │ │ └── turbulenceProperties │ ├── initial │ │ ├── Laser_boundary │ │ ├── T │ │ ├── U │ │ ├── alpha.air │ │ ├── alpha.metal1 │ │ ├── alpha.metal1vapour │ │ ├── alpha.metal2 │ │ ├── alpha.metal2vapour │ │ ├── alpha.metal3 │ │ ├── alpha.metal3vapour │ │ ├── alpha.metal4 │ │ ├── alpha.metal4vapour │ │ ├── alphas │ │ ├── p │ │ └── p_rgh │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── Test1 │ ├── constant │ │ ├── LaserProperties │ │ ├── dynamicMeshDict │ │ ├── g │ │ ├── thermophysicalProperties │ │ ├── thermophysicalProperties.air │ │ ├── thermophysicalProperties.metal1 │ │ ├── thermophysicalProperties.metal1vapour │ │ ├── thermophysicalProperties.metal2 │ │ ├── thermophysicalProperties.metal2vapour │ │ ├── thermophysicalProperties.metal3 │ │ ├── thermophysicalProperties.metal3vapour │ │ ├── thermophysicalProperties.metal4 │ │ ├── thermophysicalProperties.metal4vapour │ │ ├── timeVsLaserPosition │ │ ├── timeVsLaserPower │ │ └── turbulenceProperties │ ├── initial │ │ ├── Laser_boundary │ │ ├── T │ │ ├── U │ │ ├── alpha.air │ │ ├── alpha.metal1 │ │ ├── alpha.metal1vapour │ │ ├── alpha.metal2 │ │ ├── alpha.metal2vapour │ │ ├── alpha.metal3 │ │ ├── alpha.metal3vapour │ │ ├── alpha.metal4 │ │ ├── alpha.metal4vapour │ │ ├── alphas │ │ ├── p │ │ └── p_rgh │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict └── Test3 │ ├── constant │ ├── g │ ├── radiationProperties │ ├── thermophysicalProperties │ ├── thermophysicalProperties.air │ ├── thermophysicalProperties.metal1 │ ├── thermophysicalProperties.metal1vapour │ ├── thermophysicalProperties.metal2 │ ├── thermophysicalProperties.metal2vapour │ ├── thermophysicalProperties.metal3 │ ├── thermophysicalProperties.metal3vapour │ ├── thermophysicalProperties.metal4 │ ├── thermophysicalProperties.metal4vapour │ └── turbulenceProperties │ ├── initial │ ├── T │ ├── U │ ├── alpha.air │ ├── alpha.metal1 │ ├── alpha.metal1vapour │ ├── alpha.metal2 │ ├── alpha.metal2vapour │ ├── alpha.metal3 │ ├── alpha.metal3vapour │ ├── alpha.metal4 │ ├── alpha.metal4vapour │ ├── alphas │ ├── p │ └── p_rgh │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ └── setFieldsDict ├── laserMeltFoam └── LPBF_tutorial │ ├── Allclean │ ├── Allrun │ ├── Allrun_ray_tracing │ ├── constant │ ├── LaserProperties │ ├── dynamicMeshDict │ ├── g │ ├── location │ ├── thermalProperties │ ├── timeVsLaserPosition │ ├── timeVsLaserPower │ ├── transportProperties │ └── turbulenceProperties │ ├── initial │ ├── Laser_boundary │ ├── T │ ├── U │ ├── alpha.metal │ └── pd │ └── system │ ├── bedPlateDict │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ ├── fvSolution.org │ ├── meshDict │ └── setFieldsDict ├── laserbeamFoam ├── Five_lasers │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── LaserProperties │ │ ├── g │ │ ├── timeVsLaserPosition0 │ │ ├── timeVsLaserPosition1 │ │ ├── timeVsLaserPosition2 │ │ ├── timeVsLaserPosition3 │ │ ├── timeVsLaserPosition4 │ │ ├── timeVsLaserPower0 │ │ ├── timeVsLaserPower1 │ │ ├── timeVsLaserPower2 │ │ ├── timeVsLaserPower3 │ │ ├── timeVsLaserPower4 │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── initial │ │ ├── Laser_boundary │ │ ├── T │ │ ├── U │ │ ├── alpha.metal │ │ └── p_rgh │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── LPBF_large │ ├── Allclean │ ├── Allrun │ ├── DEM_large │ │ ├── Allclean │ │ ├── Allrun │ │ ├── input.liggghts │ │ └── meshes │ │ │ ├── domain.stl │ │ │ └── plate.stl │ ├── constant │ │ ├── LaserProperties │ │ ├── g │ │ ├── location │ │ ├── timeVsLaserPosition │ │ ├── timeVsLaserPower │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── initial │ │ ├── Laser_boundary │ │ ├── T │ │ ├── TRHS │ │ ├── U │ │ ├── alpha.metal │ │ └── p_rgh │ └── system │ │ ├── bedPlateDict │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── LPBF_small │ ├── Allclean │ ├── Allrun │ ├── DEM_small │ │ ├── Allclean │ │ ├── Allrun │ │ ├── input.liggghts │ │ └── meshes │ │ │ ├── domain.FCStd │ │ │ ├── domain.FCStd1 │ │ │ ├── domain.stl │ │ │ └── plate.stl │ ├── README.md │ ├── constant │ │ ├── LaserProperties │ │ ├── g │ │ ├── location │ │ ├── timeVsLaserPosition │ │ ├── timeVsLaserPower │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── initial │ │ ├── Laser_boundary │ │ ├── T │ │ ├── TRHS │ │ ├── U │ │ ├── alpha.metal │ │ └── p_rgh │ ├── media │ │ ├── ContactParameters.PNG │ │ └── PSD.PNG │ └── system │ │ ├── bedPlateDict │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── NewHSandAlgorithm │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── LaserProperties │ │ ├── dynamicMeshDict │ │ ├── g │ │ ├── timeVsLaserPosition │ │ ├── timeVsLaserPower │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── initial │ │ ├── Laser_boundary │ │ ├── T │ │ ├── U │ │ ├── alpha.metal │ │ └── p_rgh │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── Plate2D │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── LaserProperties │ │ ├── g │ │ ├── timeVsLaserPosition0 │ │ ├── timeVsLaserPosition1 │ │ ├── timeVsLaserPower0 │ │ ├── timeVsLaserPower1 │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── initial │ │ ├── Laser_boundary │ │ ├── T │ │ ├── U │ │ ├── alpha.metal │ │ └── p_rgh │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── PowderBed │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── LaserProperties │ │ ├── g │ │ ├── phaseProperties │ │ ├── timeVsLaserPosition0 │ │ ├── timeVsLaserPower0 │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── initial │ │ ├── Laser_boundary │ │ ├── T │ │ ├── U │ │ ├── alpha.metal │ │ ├── gradTSol │ │ └── p_rgh │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict ├── Simple2DPowder │ ├── Allclean │ ├── Allrun │ ├── constant │ │ ├── LaserProperties │ │ ├── g │ │ ├── timeVsLaserPosition │ │ ├── timeVsLaserPower │ │ ├── transportProperties │ │ └── turbulenceProperties │ ├── initial │ │ ├── Laser_boundary │ │ ├── T │ │ ├── U │ │ ├── alpha.metal │ │ ├── gradTSol │ │ └── p_rgh │ └── system │ │ ├── blockMeshDict │ │ ├── controlDict │ │ ├── decomposeParDict │ │ ├── fvSchemes │ │ ├── fvSolution │ │ └── setFieldsDict └── Test_Refine │ ├── Allclean │ ├── Allrun │ ├── constant │ ├── LaserProperties │ ├── dynamicMeshDict │ ├── g │ ├── timeVsLaserPosition │ ├── timeVsLaserPower │ ├── transportProperties │ └── turbulenceProperties │ ├── initial │ ├── Laser_boundary │ ├── T │ ├── U │ ├── alpha.metal │ └── p_rgh │ └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ └── setFieldsDict └── multiComponentlaserbeamFoam ├── DissimilarLaserWeld ├── Allclean ├── Allrun ├── constant │ ├── LaserProperties │ ├── g │ ├── momentumTransport │ ├── phaseProperties │ ├── physicalProperties.Fe │ ├── physicalProperties.Mn │ ├── physicalProperties.Ni │ ├── physicalProperties.air │ ├── timeVsLaserPosition │ └── timeVsLaserPower ├── initial │ ├── Laser_boundary │ ├── T │ ├── U │ ├── alpha.Fe.orig │ ├── alpha.Mn.orig │ ├── alpha.Ni.orig │ ├── alpha.air.orig │ └── p_rgh └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ └── setFieldsDict ├── Plate2DMC ├── Allclean ├── Allrun ├── constant │ ├── LaserProperties │ ├── g │ ├── momentumTransport │ ├── phaseProperties │ ├── physicalProperties.Fe │ ├── physicalProperties.Mn │ ├── physicalProperties.Ni │ ├── physicalProperties.air │ ├── timeVsLaserPosition │ └── timeVsLaserPower ├── initial │ ├── Laser_boundary │ ├── T │ ├── U │ ├── alpha.Fe.orig │ ├── alpha.Mn.orig │ ├── alpha.Ni.orig │ ├── alpha.air.orig │ └── p_rgh └── system │ ├── blockMeshDict │ ├── controlDict │ ├── decomposeParDict │ ├── fvSchemes │ ├── fvSolution │ └── setFieldsDict └── PowderSim ├── Allclean ├── Allrun ├── constant ├── LaserProperties ├── g ├── momentumTransport ├── phaseProperties ├── physicalProperties.Fe ├── physicalProperties.Mn ├── physicalProperties.Ni ├── physicalProperties.air ├── timeVsLaserPosition └── timeVsLaserPower ├── initial ├── Laser_boundary ├── T ├── U ├── alpha.Fe.orig ├── alpha.Mn.orig ├── alpha.Ni.orig ├── alpha.air.orig └── p_rgh └── system ├── blockMeshDict ├── controlDict ├── decomposeParDict ├── fvSchemes ├── fvSolution └── setFieldsDict /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/linkcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/.github/workflows/linkcheck.yml -------------------------------------------------------------------------------- /.github/workflows/markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/.github/workflows/markdownlint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/.gitignore -------------------------------------------------------------------------------- /Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/Allwclean -------------------------------------------------------------------------------- /Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/Allwmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/README.md -------------------------------------------------------------------------------- /applications/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/Allwclean -------------------------------------------------------------------------------- /applications/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/Allwmake -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/Allwclean -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/Allwmake -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/Make/files -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/Make/options -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/TEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/TEqn.H -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/UEqn.H -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/VoF/alphaCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/VoF/alphaCourantNo.H -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/VoF/alphaEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/VoF/alphaEqn.H -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/VoF/alphaEqnSubCycle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/VoF/alphaEqnSubCycle.H -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/VoF/createAlphaFluxes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/VoF/createAlphaFluxes.H -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/VoF/setDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/VoF/setDeltaT.H -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/VoF/setRDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/VoF/setRDeltaT.H -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/compressibleLaserbeamFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/compressibleLaserbeamFoam.C -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/correctPhi.esi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/correctPhi.esi.H -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/createFields.H -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/initCorrectPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/initCorrectPhi.H -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/multiphaseMixtureThermo/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/multiphaseMixtureThermo/Make/files -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/multiphaseMixtureThermo/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/multiphaseMixtureThermo/Make/options -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/multiphaseMixtureThermo/alphaContactAngle/alphaContactAngleFvPatchScalarField.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/multiphaseMixtureThermo/alphaContactAngle/alphaContactAngleFvPatchScalarField.C -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/multiphaseMixtureThermo/alphaContactAngle/alphaContactAngleFvPatchScalarField.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/multiphaseMixtureThermo/alphaContactAngle/alphaContactAngleFvPatchScalarField.H -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/multiphaseMixtureThermo/multiphaseMixtureThermo.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/multiphaseMixtureThermo/multiphaseMixtureThermo.C -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/multiphaseMixtureThermo/multiphaseMixtureThermo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/multiphaseMixtureThermo/multiphaseMixtureThermo.H -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/multiphaseMixtureThermo/phaseModel/phaseModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/multiphaseMixtureThermo/phaseModel/phaseModel.C -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/multiphaseMixtureThermo/phaseModel/phaseModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/multiphaseMixtureThermo/phaseModel/phaseModel.H -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/pEqn.H -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/readMeltingControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/readMeltingControls.H -------------------------------------------------------------------------------- /applications/solvers/compressibleLaserbeamFoam/update.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/compressibleLaserbeamFoam/update.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/Make/files -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/Make/options -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/README.md -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/TEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/TEqn.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/UEqn.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/UEqnAddPorosity.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/UEqnAddPorosity.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/alphaControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/alphaControls.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/alphaEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/alphaEqn.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/alphaEqnSubCycle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/alphaEqnSubCycle.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/alphaSuSp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/alphaSuSp.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/correctPhi.lowercase.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/correctPhi.lowercase.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/createCellColumns.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/createCellColumns.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/createFields.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/createPorosity.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/createPorosity.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/example_sim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/example_sim.gif -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/initCorrectPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/initCorrectPhi.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/laserMeltFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/laserMeltFoam.C -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/liquidFraction.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/liquidFraction.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/liquidFractionFunctions.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/liquidFractionFunctions.C -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/liquidFractionFunctions.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/liquidFractionFunctions.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/pEqn.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/porousAlphaCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/porousAlphaCourantNo.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/porousCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/porousCourantNo.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/readLaserProperties.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/readLaserProperties.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/readThermalProperties.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/readThermalProperties.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/rhofs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/rhofs.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/source.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/source.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/updateFLB.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/updateFLB.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/updateLaser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/updateLaser.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/updateProperties.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/updateProperties.H -------------------------------------------------------------------------------- /applications/solvers/laserMeltFoam/updatePropertiesLaser.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserMeltFoam/updatePropertiesLaser.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/MULES/CourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/MULES/CourantNo.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/MULES/alphaControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/MULES/alphaControls.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/MULES/alphaCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/MULES/alphaCourantNo.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/MULES/alphaEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/MULES/alphaEqn.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/MULES/alphaEqnSubCycle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/MULES/alphaEqnSubCycle.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/MULES/alphaSuSp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/MULES/alphaSuSp.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/MULES/createAlphaFluxes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/MULES/createAlphaFluxes.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/MULES/firstIter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/MULES/firstIter.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/MULES/setDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/MULES/setDeltaT.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/MULES/setRDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/MULES/setRDeltaT.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/Make/files -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/Make/options -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/TEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/TEqn.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/UEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/UEqn.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/correctPhi.esi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/correctPhi.esi.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/createFields.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/createFields.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/initCorrectPhi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/initCorrectPhi.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/isoAdvector/alphaControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/isoAdvector/alphaControls.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/isoAdvector/alphaEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/isoAdvector/alphaEqn.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/isoAdvector/alphaEqnSubCycle.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/isoAdvector/alphaEqnSubCycle.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/isoAdvector/alphaSuSp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/isoAdvector/alphaSuSp.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/isoAdvector/createPorosity.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/isoAdvector/createPorosity.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/isoAdvector/firstIter.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/isoAdvector/firstIter.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/isoAdvector/porousAlphaCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/isoAdvector/porousAlphaCourantNo.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/isoAdvector/porousCourantNo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/isoAdvector/porousCourantNo.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/isoAdvector/setDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/isoAdvector/setDeltaT.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/laserbeamFoam.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/laserbeamFoam.C -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/pEqn.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/pEqn.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/readControls.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/readControls.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/rhofs.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/rhofs.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/setInitialDeltaT.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/setInitialDeltaT.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/updateKappaCp.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/updateKappaCp.H -------------------------------------------------------------------------------- /applications/solvers/laserbeamFoam/updateProps.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/solvers/laserbeamFoam/updateProps.H -------------------------------------------------------------------------------- /applications/utilities/setSolidFraction/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/utilities/setSolidFraction/Make/files -------------------------------------------------------------------------------- /applications/utilities/setSolidFraction/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/utilities/setSolidFraction/Make/options -------------------------------------------------------------------------------- /applications/utilities/setSolidFraction/setSolidFraction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/applications/utilities/setSolidFraction/setSolidFraction.C -------------------------------------------------------------------------------- /documentation/LaserbeamFoam___V2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/documentation/LaserbeamFoam___V2.pdf -------------------------------------------------------------------------------- /images/Dissimilar_laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/images/Dissimilar_laser.png -------------------------------------------------------------------------------- /images/Powder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/images/Powder.png -------------------------------------------------------------------------------- /images/laserbeamFoam_AMR.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/images/laserbeamFoam_AMR.mp4 -------------------------------------------------------------------------------- /images/t200usT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/images/t200usT.png -------------------------------------------------------------------------------- /images/t=0.042s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/images/t=0.042s.png -------------------------------------------------------------------------------- /src/Allwclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/Allwclean -------------------------------------------------------------------------------- /src/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/Allwmake -------------------------------------------------------------------------------- /src/geometricVoF/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/Allwmake -------------------------------------------------------------------------------- /src/geometricVoF/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/Make/files -------------------------------------------------------------------------------- /src/geometricVoF/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/Make/options -------------------------------------------------------------------------------- /src/geometricVoF/advectionSchemes/isoAdvection/isoAdvection.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/advectionSchemes/isoAdvection/isoAdvection.C -------------------------------------------------------------------------------- /src/geometricVoF/advectionSchemes/isoAdvection/isoAdvection.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/advectionSchemes/isoAdvection/isoAdvection.H -------------------------------------------------------------------------------- /src/geometricVoF/advectionSchemes/isoAdvection/isoAdvectionTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/advectionSchemes/isoAdvection/isoAdvectionTemplates.C -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutCell/cutCell.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/cellCuts/cutCell/cutCell.C -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutCell/cutCell.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/cellCuts/cutCell/cutCell.H -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutCell/cutCellIso.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/cellCuts/cutCell/cutCellIso.C -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutCell/cutCellIso.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/cellCuts/cutCell/cutCellIso.H -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutCell/cutCellPLIC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/cellCuts/cutCell/cutCellPLIC.C -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutCell/cutCellPLIC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/cellCuts/cutCell/cutCellPLIC.H -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutFace/cutFace.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/cellCuts/cutFace/cutFace.C -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutFace/cutFace.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/cellCuts/cutFace/cutFace.H -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutFace/cutFaceAdvect.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/cellCuts/cutFace/cutFaceAdvect.C -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutFace/cutFaceAdvect.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/cellCuts/cutFace/cutFaceAdvect.H -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutFace/cutFaceIso.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/cellCuts/cutFace/cutFaceIso.C -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutFace/cutFaceIso.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/cellCuts/cutFace/cutFaceIso.H -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutFace/cutFacePLIC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/cellCuts/cutFace/cutFacePLIC.C -------------------------------------------------------------------------------- /src/geometricVoF/cellCuts/cutFace/cutFacePLIC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/cellCuts/cutFace/cutFacePLIC.H -------------------------------------------------------------------------------- /src/geometricVoF/log.Allwmake.geometricVoF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/log.Allwmake.geometricVoF -------------------------------------------------------------------------------- /src/geometricVoF/reconstructedDistanceFunction/reconstructedDistanceFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/reconstructedDistanceFunction/reconstructedDistanceFunction.C -------------------------------------------------------------------------------- /src/geometricVoF/reconstructedDistanceFunction/reconstructedDistanceFunction.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/reconstructedDistanceFunction/reconstructedDistanceFunction.H -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/isoSchemes/isoAlpha/isoAlpha.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/reconstructionSchemes/isoSchemes/isoAlpha/isoAlpha.C -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/isoSchemes/isoAlpha/isoAlpha.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/reconstructionSchemes/isoSchemes/isoAlpha/isoAlpha.H -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/plicSchemes/gradAlpha/gradAlpha.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/reconstructionSchemes/plicSchemes/gradAlpha/gradAlpha.C -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/plicSchemes/gradAlpha/gradAlpha.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/reconstructionSchemes/plicSchemes/gradAlpha/gradAlpha.H -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/plicSchemes/plicRDF/plicRDF.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/reconstructionSchemes/plicSchemes/plicRDF/plicRDF.C -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/plicSchemes/plicRDF/plicRDF.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/reconstructionSchemes/plicSchemes/plicRDF/plicRDF.H -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/reconstructionSchemes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/reconstructionSchemes/reconstructionSchemes.C -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/reconstructionSchemes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/reconstructionSchemes/reconstructionSchemes.H -------------------------------------------------------------------------------- /src/geometricVoF/reconstructionSchemes/reconstructionSchemesNew.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/reconstructionSchemes/reconstructionSchemesNew.C -------------------------------------------------------------------------------- /src/geometricVoF/sampledInterface/sampledInterface.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/sampledInterface/sampledInterface.C -------------------------------------------------------------------------------- /src/geometricVoF/sampledInterface/sampledInterface.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/sampledInterface/sampledInterface.H -------------------------------------------------------------------------------- /src/geometricVoF/sampledInterface/sampledInterfaceTemplates.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/sampledInterface/sampledInterfaceTemplates.C -------------------------------------------------------------------------------- /src/geometricVoF/surfaceIterators/surfaceIteratorIso.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/surfaceIterators/surfaceIteratorIso.C -------------------------------------------------------------------------------- /src/geometricVoF/surfaceIterators/surfaceIteratorIso.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/surfaceIterators/surfaceIteratorIso.H -------------------------------------------------------------------------------- /src/geometricVoF/surfaceIterators/surfaceIteratorPLIC.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/surfaceIterators/surfaceIteratorPLIC.C -------------------------------------------------------------------------------- /src/geometricVoF/surfaceIterators/surfaceIteratorPLIC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/geometricVoF/surfaceIterators/surfaceIteratorPLIC.H -------------------------------------------------------------------------------- /src/laserHeatSource/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/laserHeatSource/Allwmake -------------------------------------------------------------------------------- /src/laserHeatSource/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/laserHeatSource/Make/files -------------------------------------------------------------------------------- /src/laserHeatSource/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/laserHeatSource/Make/options -------------------------------------------------------------------------------- /src/laserHeatSource/compactRay.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/laserHeatSource/compactRay.C -------------------------------------------------------------------------------- /src/laserHeatSource/compactRay.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/laserHeatSource/compactRay.H -------------------------------------------------------------------------------- /src/laserHeatSource/findLocalCell.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/laserHeatSource/findLocalCell.H -------------------------------------------------------------------------------- /src/laserHeatSource/laserHeatSource.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/laserHeatSource/laserHeatSource.C -------------------------------------------------------------------------------- /src/laserHeatSource/laserHeatSource.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/laserHeatSource/laserHeatSource.H -------------------------------------------------------------------------------- /src/transportModels/incompressible/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/Allwmake -------------------------------------------------------------------------------- /src/transportModels/incompressible/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/Make/files -------------------------------------------------------------------------------- /src/transportModels/incompressible/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/Make/options -------------------------------------------------------------------------------- /src/transportModels/incompressible/incompressibleTwoPhaseMixture/incompressibleTwoPhaseMixture.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/incompressibleTwoPhaseMixture/incompressibleTwoPhaseMixture.C -------------------------------------------------------------------------------- /src/transportModels/incompressible/incompressibleTwoPhaseMixture/incompressibleTwoPhaseMixture.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/incompressibleTwoPhaseMixture/incompressibleTwoPhaseMixture.H -------------------------------------------------------------------------------- /src/transportModels/incompressible/laserThreePhaseMixture/laserThreePhaseMixture.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/laserThreePhaseMixture/laserThreePhaseMixture.C -------------------------------------------------------------------------------- /src/transportModels/incompressible/laserThreePhaseMixture/laserThreePhaseMixture.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/laserThreePhaseMixture/laserThreePhaseMixture.H -------------------------------------------------------------------------------- /src/transportModels/incompressible/log.Allwmake.transportModels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/log.Allwmake.transportModels -------------------------------------------------------------------------------- /src/transportModels/incompressible/singlePhaseTransportModel/singlePhaseTransportModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/singlePhaseTransportModel/singlePhaseTransportModel.C -------------------------------------------------------------------------------- /src/transportModels/incompressible/singlePhaseTransportModel/singlePhaseTransportModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/singlePhaseTransportModel/singlePhaseTransportModel.H -------------------------------------------------------------------------------- /src/transportModels/incompressible/transportModel/transportModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/transportModel/transportModel.C -------------------------------------------------------------------------------- /src/transportModels/incompressible/transportModel/transportModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/transportModel/transportModel.H -------------------------------------------------------------------------------- /src/transportModels/incompressible/transportModelNew/transportModelNew.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/transportModelNew/transportModelNew.C -------------------------------------------------------------------------------- /src/transportModels/incompressible/transportModelNew/transportModelNew.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/transportModelNew/transportModelNew.H -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/Arrhenius/Arrhenius.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/Arrhenius/Arrhenius.C -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/Arrhenius/Arrhenius.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/Arrhenius/Arrhenius.H -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/Arrhenius/Arrheniuss.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/Arrhenius/Arrheniuss.C -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/Arrhenius/makeArrheniusTypes.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/Arrhenius/makeArrheniusTypes.H -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/BirdCarreau/BirdCarreau.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/BirdCarreau/BirdCarreau.C -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/BirdCarreau/BirdCarreau.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/BirdCarreau/BirdCarreau.H -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/Casson/Casson.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/Casson/Casson.C -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/Casson/Casson.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/Casson/Casson.H -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/CrossPowerLaw/CrossPowerLaw.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/CrossPowerLaw/CrossPowerLaw.C -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/CrossPowerLaw/CrossPowerLaw.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/CrossPowerLaw/CrossPowerLaw.H -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/HerschelBulkley/HerschelBulkley.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/HerschelBulkley/HerschelBulkley.C -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/HerschelBulkley/HerschelBulkley.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/HerschelBulkley/HerschelBulkley.H -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/Newtonian/Newtonian.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/Newtonian/Newtonian.C -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/Newtonian/Newtonian.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/Newtonian/Newtonian.H -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/powerLaw/powerLaw.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/powerLaw/powerLaw.C -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/powerLaw/powerLaw.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/powerLaw/powerLaw.H -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/strainRateFunction/strainRateFunction.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/strainRateFunction/strainRateFunction.C -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/strainRateFunction/strainRateFunction.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/strainRateFunction/strainRateFunction.H -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/viscosityModel/viscosityModel.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/viscosityModel/viscosityModel.C -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/viscosityModel/viscosityModel.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/viscosityModel/viscosityModel.H -------------------------------------------------------------------------------- /src/transportModels/incompressible/viscosityModels/viscosityModel/viscosityModelNew.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/transportModels/incompressible/viscosityModels/viscosityModel/viscosityModelNew.C -------------------------------------------------------------------------------- /src/turbulenceModel/Allwmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/turbulenceModel/Allwmake -------------------------------------------------------------------------------- /src/turbulenceModel/Make/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/turbulenceModel/Make/files -------------------------------------------------------------------------------- /src/turbulenceModel/Make/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/turbulenceModel/Make/options -------------------------------------------------------------------------------- /src/turbulenceModel/laminar/laminar.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/turbulenceModel/laminar/laminar.C -------------------------------------------------------------------------------- /src/turbulenceModel/laminar/laminar.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/turbulenceModel/laminar/laminar.H -------------------------------------------------------------------------------- /src/turbulenceModel/turbulenceModelNew.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/turbulenceModel/turbulenceModelNew.C -------------------------------------------------------------------------------- /src/turbulenceModel/turbulenceModelNew.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/src/turbulenceModel/turbulenceModelNew.H -------------------------------------------------------------------------------- /tutorials/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/Allclean -------------------------------------------------------------------------------- /tutorials/Alltest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/Alltest -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/Allclean -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/Allrun -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/LaserProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/LaserProperties -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/dynamicMeshDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/g -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/location -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/thermophysicalProperties.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/thermophysicalProperties.air -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/thermophysicalProperties.metal1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/thermophysicalProperties.metal1 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/thermophysicalProperties.metal1vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/thermophysicalProperties.metal1vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/timeVsLaserPosition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/timeVsLaserPosition -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/timeVsLaserPower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/timeVsLaserPower -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/Laser_boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/Laser_boundary -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/T -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/T.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/T.air -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/T.metal1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/T.metal1 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/T.metal1vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/T.metal1vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/U -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/alpha.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/alpha.air -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/alpha.metal1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/alpha.metal1 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/alpha.metal1vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/alpha.metal1vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/p -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/initial/p_rgh -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/system/bedPlateDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/system/bedPlateDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/system/controlDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/system/fvSolution -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LPBF_small_vapour/system/setFieldsDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/constant/LaserProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/constant/LaserProperties -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/constant/dynamicMeshDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/constant/g -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.air -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.metal1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.metal1 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.metal1vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.metal1vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.metal2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.metal2 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.metal2vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.metal2vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.metal3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.metal3 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.metal3vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.metal3vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.metal4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.metal4 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.metal4vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/constant/thermophysicalProperties.metal4vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/constant/timeVsLaserPosition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/constant/timeVsLaserPosition -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/constant/timeVsLaserPower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/constant/timeVsLaserPower -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/initial/Laser_boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/initial/Laser_boundary -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/initial/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/initial/T -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/initial/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/initial/U -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.air -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.metal1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.metal1 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.metal1vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.metal1vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.metal2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.metal2 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.metal2vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.metal2vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.metal3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.metal3 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.metal3vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.metal3vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.metal4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.metal4 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.metal4vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/initial/alpha.metal4vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/initial/alphas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/initial/alphas -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/initial/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/initial/p -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/initial/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/initial/p_rgh -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/system/controlDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/system/fvSolution -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/LaserCase/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/LaserCase/system/setFieldsDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/constant/LaserProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/constant/LaserProperties -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/constant/dynamicMeshDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/constant/g -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.air -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.metal1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.metal1 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.metal1vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.metal1vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.metal2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.metal2 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.metal2vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.metal2vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.metal3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.metal3 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.metal3vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.metal3vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.metal4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.metal4 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.metal4vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/constant/thermophysicalProperties.metal4vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/constant/timeVsLaserPosition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/constant/timeVsLaserPosition -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/constant/timeVsLaserPower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/constant/timeVsLaserPower -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/initial/Laser_boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/initial/Laser_boundary -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/initial/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/initial/T -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/initial/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/initial/U -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.air -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.metal1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.metal1 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.metal1vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.metal1vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.metal2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.metal2 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.metal2vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.metal2vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.metal3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.metal3 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.metal3vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.metal3vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.metal4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.metal4 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.metal4vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/initial/alpha.metal4vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/initial/alphas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/initial/alphas -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/initial/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/initial/p -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/initial/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/initial/p_rgh -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/system/controlDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/system/fvSolution -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test1/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test1/system/setFieldsDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/constant/g -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/constant/radiationProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/constant/radiationProperties -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.air -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.metal1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.metal1 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.metal1vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.metal1vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.metal2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.metal2 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.metal2vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.metal2vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.metal3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.metal3 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.metal3vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.metal3vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.metal4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.metal4 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.metal4vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/constant/thermophysicalProperties.metal4vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/initial/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/initial/T -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/initial/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/initial/U -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.air -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.metal1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.metal1 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.metal1vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.metal1vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.metal2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.metal2 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.metal2vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.metal2vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.metal3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.metal3 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.metal3vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.metal3vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.metal4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.metal4 -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.metal4vapour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/initial/alpha.metal4vapour -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/initial/alphas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/initial/alphas -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/initial/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/initial/p -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/initial/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/initial/p_rgh -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/system/controlDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/system/fvSolution -------------------------------------------------------------------------------- /tutorials/compressiblelaserbeamFoam/Test3/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/compressiblelaserbeamFoam/Test3/system/setFieldsDict -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/Allclean -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/Allrun -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/Allrun_ray_tracing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/Allrun_ray_tracing -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/constant/LaserProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/constant/LaserProperties -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/constant/dynamicMeshDict -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/constant/g -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/constant/location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/constant/location -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/constant/thermalProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/constant/thermalProperties -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/constant/timeVsLaserPosition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/constant/timeVsLaserPosition -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/constant/timeVsLaserPower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/constant/timeVsLaserPower -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/constant/transportProperties -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/initial/Laser_boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/initial/Laser_boundary -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/initial/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/initial/T -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/initial/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/initial/U -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/initial/alpha.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/initial/alpha.metal -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/initial/pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/initial/pd -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/system/bedPlateDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/system/bedPlateDict -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/system/controlDict -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/system/fvSolution -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/system/fvSolution.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/system/fvSolution.org -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/system/meshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/system/meshDict -------------------------------------------------------------------------------- /tutorials/laserMeltFoam/LPBF_tutorial/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserMeltFoam/LPBF_tutorial/system/setFieldsDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/Allclean -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/Allrun -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/constant/LaserProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/constant/LaserProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/constant/g -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPosition0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPosition0 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPosition1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPosition1 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPosition2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPosition2 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPosition3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPosition3 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPosition4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPosition4 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPower0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPower0 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPower1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPower1 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPower2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPower2 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPower3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPower3 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPower4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/constant/timeVsLaserPower4 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/constant/transportProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/initial/Laser_boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/initial/Laser_boundary -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/initial/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/initial/T -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/initial/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/initial/U -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/initial/alpha.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/initial/alpha.metal -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/initial/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/initial/p_rgh -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/system/controlDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/system/fvSolution -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Five_lasers/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Five_lasers/system/setFieldsDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/Allclean -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/Allrun -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/DEM_large/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm log.liggghts && rm -r post 4 | -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/DEM_large/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/DEM_large/Allrun -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/DEM_large/input.liggghts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/DEM_large/input.liggghts -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/DEM_large/meshes/domain.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/DEM_large/meshes/domain.stl -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/DEM_large/meshes/plate.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/DEM_large/meshes/plate.stl -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/constant/LaserProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/constant/LaserProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/constant/g -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/constant/location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/constant/location -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/constant/timeVsLaserPosition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/constant/timeVsLaserPosition -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/constant/timeVsLaserPower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/constant/timeVsLaserPower -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/constant/transportProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/initial/Laser_boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/initial/Laser_boundary -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/initial/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/initial/T -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/initial/TRHS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/initial/TRHS -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/initial/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/initial/U -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/initial/alpha.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/initial/alpha.metal -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/initial/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/initial/p_rgh -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/system/bedPlateDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/system/bedPlateDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/system/controlDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/system/fvSolution -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_large/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_large/system/setFieldsDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/Allclean -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/Allrun -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/DEM_small/Allclean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -rf log.liggghts post 4 | -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/DEM_small/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/DEM_small/Allrun -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/DEM_small/input.liggghts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/DEM_small/input.liggghts -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/DEM_small/meshes/domain.FCStd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/DEM_small/meshes/domain.FCStd -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/DEM_small/meshes/domain.FCStd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/DEM_small/meshes/domain.FCStd1 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/DEM_small/meshes/domain.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/DEM_small/meshes/domain.stl -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/DEM_small/meshes/plate.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/DEM_small/meshes/plate.stl -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/README.md -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/constant/LaserProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/constant/LaserProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/constant/g -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/constant/location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/constant/location -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/constant/timeVsLaserPosition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/constant/timeVsLaserPosition -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/constant/timeVsLaserPower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/constant/timeVsLaserPower -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/constant/transportProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/initial/Laser_boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/initial/Laser_boundary -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/initial/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/initial/T -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/initial/TRHS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/initial/TRHS -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/initial/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/initial/U -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/initial/alpha.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/initial/alpha.metal -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/initial/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/initial/p_rgh -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/media/ContactParameters.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/media/ContactParameters.PNG -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/media/PSD.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/media/PSD.PNG -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/system/bedPlateDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/system/bedPlateDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/system/controlDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/system/fvSolution -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/LPBF_small/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/LPBF_small/system/setFieldsDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/Allclean -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/Allrun -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/constant/LaserProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/constant/LaserProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/constant/dynamicMeshDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/constant/g -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/constant/timeVsLaserPosition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/constant/timeVsLaserPosition -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/constant/timeVsLaserPower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/constant/timeVsLaserPower -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/constant/transportProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/initial/Laser_boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/initial/Laser_boundary -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/initial/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/initial/T -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/initial/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/initial/U -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/initial/alpha.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/initial/alpha.metal -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/initial/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/initial/p_rgh -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/system/controlDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/system/fvSolution -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/NewHSandAlgorithm/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/NewHSandAlgorithm/system/setFieldsDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/Allclean -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/Allrun -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/constant/LaserProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/constant/LaserProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/constant/g -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/constant/timeVsLaserPosition0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/constant/timeVsLaserPosition0 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/constant/timeVsLaserPosition1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/constant/timeVsLaserPosition1 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/constant/timeVsLaserPower0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/constant/timeVsLaserPower0 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/constant/timeVsLaserPower1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/constant/timeVsLaserPower1 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/constant/transportProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/initial/Laser_boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/initial/Laser_boundary -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/initial/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/initial/T -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/initial/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/initial/U -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/initial/alpha.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/initial/alpha.metal -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/initial/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/initial/p_rgh -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/system/controlDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/system/fvSolution -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Plate2D/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Plate2D/system/setFieldsDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/Allclean -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/Allrun -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/constant/LaserProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/constant/LaserProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/constant/g -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/constant/phaseProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/constant/phaseProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/constant/timeVsLaserPosition0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/constant/timeVsLaserPosition0 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/constant/timeVsLaserPower0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/constant/timeVsLaserPower0 -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/constant/transportProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/initial/Laser_boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/initial/Laser_boundary -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/initial/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/initial/T -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/initial/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/initial/U -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/initial/alpha.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/initial/alpha.metal -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/initial/gradTSol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/initial/gradTSol -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/initial/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/initial/p_rgh -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/system/controlDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/system/fvSolution -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/PowderBed/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/PowderBed/system/setFieldsDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/Allclean -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/Allrun -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/constant/LaserProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/constant/LaserProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/constant/g -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/constant/timeVsLaserPosition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/constant/timeVsLaserPosition -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/constant/timeVsLaserPower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/constant/timeVsLaserPower -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/constant/transportProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/initial/Laser_boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/initial/Laser_boundary -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/initial/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/initial/T -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/initial/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/initial/U -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/initial/alpha.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/initial/alpha.metal -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/initial/gradTSol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/initial/gradTSol -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/initial/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/initial/p_rgh -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/system/controlDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/system/fvSolution -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Simple2DPowder/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Simple2DPowder/system/setFieldsDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/Allclean -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/Allrun -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/constant/LaserProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/constant/LaserProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/constant/dynamicMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/constant/dynamicMeshDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/constant/g -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/constant/timeVsLaserPosition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/constant/timeVsLaserPosition -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/constant/timeVsLaserPower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/constant/timeVsLaserPower -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/constant/transportProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/constant/transportProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/constant/turbulenceProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/constant/turbulenceProperties -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/initial/Laser_boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/initial/Laser_boundary -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/initial/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/initial/T -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/initial/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/initial/U -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/initial/alpha.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/initial/alpha.metal -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/initial/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/initial/p_rgh -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/system/controlDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/system/fvSolution -------------------------------------------------------------------------------- /tutorials/laserbeamFoam/Test_Refine/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/laserbeamFoam/Test_Refine/system/setFieldsDict -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/Allclean -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/Allrun -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/LaserProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/LaserProperties -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/g -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/momentumTransport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/momentumTransport -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/phaseProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/phaseProperties -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/physicalProperties.Fe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/physicalProperties.Fe -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/physicalProperties.Mn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/physicalProperties.Mn -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/physicalProperties.Ni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/physicalProperties.Ni -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/physicalProperties.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/physicalProperties.air -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/timeVsLaserPosition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/timeVsLaserPosition -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/timeVsLaserPower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/constant/timeVsLaserPower -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/initial/Laser_boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/initial/Laser_boundary -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/initial/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/initial/T -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/initial/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/initial/U -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/initial/alpha.Fe.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/initial/alpha.Fe.orig -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/initial/alpha.Mn.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/initial/alpha.Mn.orig -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/initial/alpha.Ni.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/initial/alpha.Ni.orig -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/initial/alpha.air.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/initial/alpha.air.orig -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/initial/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/initial/p_rgh -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/system/controlDict -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/system/fvSolution -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/DissimilarLaserWeld/system/setFieldsDict -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/Allclean -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/Allrun -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/LaserProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/LaserProperties -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/g -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/momentumTransport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/momentumTransport -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/phaseProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/phaseProperties -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/physicalProperties.Fe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/physicalProperties.Fe -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/physicalProperties.Mn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/physicalProperties.Mn -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/physicalProperties.Ni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/physicalProperties.Ni -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/physicalProperties.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/physicalProperties.air -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/timeVsLaserPosition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/timeVsLaserPosition -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/timeVsLaserPower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/constant/timeVsLaserPower -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/initial/Laser_boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/initial/Laser_boundary -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/initial/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/initial/T -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/initial/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/initial/U -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/initial/alpha.Fe.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/initial/alpha.Fe.orig -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/initial/alpha.Mn.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/initial/alpha.Mn.orig -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/initial/alpha.Ni.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/initial/alpha.Ni.orig -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/initial/alpha.air.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/initial/alpha.air.orig -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/initial/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/initial/p_rgh -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/system/controlDict -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/system/fvSolution -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/Plate2DMC/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/Plate2DMC/system/setFieldsDict -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/Allclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/Allclean -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/Allrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/Allrun -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/constant/LaserProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/constant/LaserProperties -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/constant/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/constant/g -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/constant/momentumTransport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/constant/momentumTransport -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/constant/phaseProperties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/constant/phaseProperties -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/constant/physicalProperties.Fe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/constant/physicalProperties.Fe -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/constant/physicalProperties.Mn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/constant/physicalProperties.Mn -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/constant/physicalProperties.Ni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/constant/physicalProperties.Ni -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/constant/physicalProperties.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/constant/physicalProperties.air -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/constant/timeVsLaserPosition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/constant/timeVsLaserPosition -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/constant/timeVsLaserPower: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/constant/timeVsLaserPower -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/initial/Laser_boundary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/initial/Laser_boundary -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/initial/T: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/initial/T -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/initial/U: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/initial/U -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/initial/alpha.Fe.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/initial/alpha.Fe.orig -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/initial/alpha.Mn.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/initial/alpha.Mn.orig -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/initial/alpha.Ni.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/initial/alpha.Ni.orig -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/initial/alpha.air.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/initial/alpha.air.orig -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/initial/p_rgh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/initial/p_rgh -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/system/blockMeshDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/system/blockMeshDict -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/system/controlDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/system/controlDict -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/system/decomposeParDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/system/decomposeParDict -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/system/fvSchemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/system/fvSchemes -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/system/fvSolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/system/fvSolution -------------------------------------------------------------------------------- /tutorials/multiComponentlaserbeamFoam/PowderSim/system/setFieldsDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laserbeamfoam/LaserbeamFoam/HEAD/tutorials/multiComponentlaserbeamFoam/PowderSim/system/setFieldsDict --------------------------------------------------------------------------------