Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ cd ${0%/*} || exit 1 # Run from this directory
application=df0DFoam

runApplication blockMesh
runApplication $application
runApplication decomposePar
runApplication mpirun -np 4 $application -parallel
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "constant";
object chemistryProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //


chemistry on;
CanteraMechanismFile "drm19.yml";
transportModel "Mix";//"UnityLewis";
odeCoeffs
{
"relTol" 1e-15;
"absTol" 1e-24;
}
inertSpecie "N2";

zeroDReactor
{
constantProperty "pressure";//cvorcp "UV";
}

torch on;
GPU on;
torchModel1 "modeldrm19_0.pt";
torchModel2 "modeldrm19_1.pt";
torchModel3 "modeldrm19_2.pt";

torchParameters1
{
Tact 700 ;
Qdotact 3e7;
coresPerGPU 4;
}
torchParameters2
{
Tact 2000;
Qdotact 3e7;
}
torchParameters3
{
Tact 2000;
Qdotact 7e8;
}
loadbalancing
{
active false;
//log true;
}
// ************************************************************************* //
Loading