STYLE: added verbatim/endverbatim in doxygen docs

This commit is contained in:
Mark Olesen
2010-10-05 18:50:44 +02:00
parent 9fd0959b88
commit dcc00e2cc9
3 changed files with 73 additions and 74 deletions

View File

@ -44,38 +44,38 @@ Description
The look-up table ("speciesTable") file should be in constant
i.e. dictionary
@verbatim
LookUpTableFileName "speciesTable";
LookUpTableFileName "speciesTable";
EhrrCoeff 0.0;
EhrrCoeff 0.0;
CO2
{
Tcommon 300.; // Common Temp
invTemp true; // Is the polynomial using inverse temperature?
Tlow 300.; // Low Temp
Thigh 2500.; // High Temp
CO2
{
Tcommon 300.; // Common Temp
invTemp true; // Is the polynomial using inverse temperature?
Tlow 300.; // Low Temp
Thigh 2500.; // High Temp
loTcoeffs // coeffs for T < Tcommon
(
0 // a0 +
0 // a1*T +
0 // a2*T^(+/-)2 +
0 // a3*T^(+/-)3 +
0 // a4*T^(+/-)4 +
0 // a5*T^(+/-)5 +
);
hiTcoeffs // coeffs for T > Tcommon
(
18.741
-121.31e3
273.5e6
-194.05e9
56.31e12
-5.8169e15
);
}
loTcoeffs // coeffs for T < Tcommon
(
0 // a0 +
0 // a1*T +
0 // a2*T^(+/-)2 +
0 // a3*T^(+/-)3 +
0 // a4*T^(+/-)4 +
0 // a5*T^(+/-)5 +
);
hiTcoeffs // coeffs for T > Tcommon
(
18.741
-121.31e3
273.5e6
-194.05e9
56.31e12
-5.8169e15
);
}
@endverbatim
SourceFiles
greyMeanAbsorptionEmission.C

View File

@ -46,53 +46,52 @@ Description
The look Up table file should be in the constant directory.
band dictionary:
band0
{
bandLimits (1.0e-6 2.63e-6);
EhrrCoeff 0.0;
species
@verbatim
band0
{
CH4
bandLimits (1.0e-6 2.63e-6);
EhrrCoeff 0.0;
species
{
Tcommon 300.;
Tlow 300.;
Thigh 2500.;
invTemp false;
loTcoeffs (0 0 0 0 0 0) ;
hiTcoeffs (.1 0 0 0 0 0);
}
CO2
{
Tcommon 300.;
Tlow 300.;
Thigh 2500.;
invTemp false;
loTcoeffs (0 0 0 0 0 0) ;
hiTcoeffs (.1 0 0 0 0 0);
}
H2O
{
Tcommon 300.;
Tlow 300.;
Thigh 2500.;
invTemp false;
loTcoeffs (0 0 0 0 0 0) ;
hiTcoeffs (.1 0 0 0 0 0);
}
Ysoot
{
Tcommon 300.;
Tlow 300.;
Thigh 2500.;
invTemp false;
loTcoeffs (0 0 0 0 0 0) ;
hiTcoeffs (.1 0 0 0 0 0);
CH4
{
Tcommon 300.;
Tlow 300.;
Thigh 2500.;
invTemp false;
loTcoeffs (0 0 0 0 0 0) ;
hiTcoeffs (.1 0 0 0 0 0);
}
CO2
{
Tcommon 300.;
Tlow 300.;
Thigh 2500.;
invTemp false;
loTcoeffs (0 0 0 0 0 0) ;
hiTcoeffs (.1 0 0 0 0 0);
}
H2O
{
Tcommon 300.;
Tlow 300.;
Thigh 2500.;
invTemp false;
loTcoeffs (0 0 0 0 0 0) ;
hiTcoeffs (.1 0 0 0 0 0);
}
Ysoot
{
Tcommon 300.;
Tlow 300.;
Thigh 2500.;
invTemp false;
loTcoeffs (0 0 0 0 0 0) ;
hiTcoeffs (.1 0 0 0 0 0);
}
}
}
}
@endverbatim
SourceFiles

View File

@ -42,7 +42,7 @@ inline Foam::thirdBodyEfficiencies::thirdBodyEfficiencies
"thirdBodyEfficiencies::thirdBodyEfficiencies"
"(const speciesTable& species, const scalarList& efficiencies)"
) << "number of efficiencies = " << size()
<< " is not equat to the number of species " << species_.size()
<< " is not equal to the number of species " << species_.size()
<< exit(FatalError);
}
}
@ -105,7 +105,7 @@ inline Foam::thirdBodyEfficiencies::thirdBodyEfficiencies
"(const speciesTable& species, Istream& is)",
is
) << "number of efficiencies = " << size()
<< " is not equat to the number of species " << species_.size()
<< " is not equal to the number of species " << species_.size()
<< exit(FatalIOError);
}
}