Skip to content
Snippets Groups Projects
Commit 40a88a14 authored by sergio's avatar sergio
Browse files

ENH: Changing p_rgh BC and call to solidThermo in noPyrolysis.C

parent d9000551
Branches
Tags
1 merge request!23ENH: Updated regionModels from internal development line
This commit is part of merge request !23. Comments created here will be created in the context of that merge request.
......@@ -54,7 +54,7 @@ void noPyrolysis::constructThermoChemistry()
radiation_.reset(radiation::radiationModel::New
(
solidChemistry_->thermo().T()
solidChemistry_->solidThermo().T()
).ptr());
}
......@@ -148,19 +148,19 @@ void noPyrolysis::evolveRegion()
const volScalarField& noPyrolysis::rho() const
{
return solidChemistry_->thermo().rho();
return solidChemistry_->solidThermo().rho();
}
const volScalarField& noPyrolysis::T() const
{
return solidChemistry_->thermo().T();
return solidChemistry_->solidThermo().T();
}
const tmp<volScalarField> noPyrolysis::Cp() const
{
return solidChemistry_->thermo().Cp();
return solidChemistry_->solidThermo().Cp();
}
......@@ -172,7 +172,7 @@ tmp<volScalarField> noPyrolysis::kappaRad() const
tmp<volScalarField> noPyrolysis::kappa() const
{
return solidChemistry_->thermo().kappa();
return solidChemistry_->solidThermo().kappa();
}
......
......@@ -23,7 +23,14 @@ boundaryField
{
sides
{
type fixedFluxPressure;
type totalPressure;
p0 $internalField;
U U;
phi phi;
rho rho;
psi none;
gamma 0;
value $internalField;
}
region0_to_wallFilmRegion_wallFilmFaces
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment