Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dumux-repositories
dumux
Commits
2c725f9a
Commit
2c725f9a
authored
7 years ago
by
Timo Koch
Browse files
Options
Downloads
Patches
Plain Diff
[test][components] Improve test by checking if state is implemented using component traits
parent
d7a9fe3c
No related branches found
No related tags found
1 merge request
!899
Feature/component traits
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/material/components/plotproperties.cc
+21
-20
21 additions, 20 deletions
test/material/components/plotproperties.cc
with
21 additions
and
20 deletions
test/material/components/plotproperties.cc
+
21
−
20
View file @
2c725f9a
...
@@ -46,6 +46,7 @@
...
@@ -46,6 +46,7 @@
#include
<dumux/material/components/simpleh2o.hh>
#include
<dumux/material/components/simpleh2o.hh>
#include
<dumux/material/components/trichloroethene.hh>
#include
<dumux/material/components/trichloroethene.hh>
#include
<dumux/material/components/xylene.hh>
#include
<dumux/material/components/xylene.hh>
#include
<dumux/material/components/componenttraits.hh>
using
namespace
std
;
using
namespace
std
;
using
namespace
Dumux
;
using
namespace
Dumux
;
...
@@ -108,7 +109,7 @@ void plot(Functor&& f,
...
@@ -108,7 +109,7 @@ void plot(Functor&& f,
//! Plot properties if overloads compile
//! Plot properties if overloads compile
template
<
class
C
,
class
hasNoDensityOverload
=
checkLiqDen
>
template
<
class
C
,
class
hasNoDensityOverload
=
checkLiqDen
>
auto
plotLiquidDensity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotLiquidDensity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoDensityOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoDensityOverload
{})(
declval
<
C
>
()))
::
value
&&
ComponentTraits
<
C
>::
hasLiquidState
,
void
>
{
{
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
liquidDensity
(
T
,
p
);
};
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
liquidDensity
(
T
,
p
);
};
plot
(
f
,
T
,
p
,
C
::
name
(),
"liquid"
,
"density"
,
"[kg/^3]"
,
openPlot
);
plot
(
f
,
T
,
p
,
C
::
name
(),
"liquid"
,
"density"
,
"[kg/^3]"
,
openPlot
);
...
@@ -116,7 +117,7 @@ auto plotLiquidDensity(const vector<double>& T, double p, bool openPlot)
...
@@ -116,7 +117,7 @@ auto plotLiquidDensity(const vector<double>& T, double p, bool openPlot)
template
<
class
C
,
class
hasNoEnthalpyOverload
=
checkLiqEnth
>
template
<
class
C
,
class
hasNoEnthalpyOverload
=
checkLiqEnth
>
auto
plotLiquidEnthalpy
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotLiquidEnthalpy
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoEnthalpyOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoEnthalpyOverload
{})(
declval
<
C
>
()))
::
value
&&
ComponentTraits
<
C
>::
hasLiquidState
,
void
>
{
{
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
liquidEnthalpy
(
T
,
p
);
};
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
liquidEnthalpy
(
T
,
p
);
};
plot
(
f
,
T
,
p
,
C
::
name
(),
"liquid"
,
"enthalpy"
,
"[J/(kg)]"
,
openPlot
);
plot
(
f
,
T
,
p
,
C
::
name
(),
"liquid"
,
"enthalpy"
,
"[J/(kg)]"
,
openPlot
);
...
@@ -124,7 +125,7 @@ auto plotLiquidEnthalpy(const vector<double>& T, double p, bool openPlot)
...
@@ -124,7 +125,7 @@ auto plotLiquidEnthalpy(const vector<double>& T, double p, bool openPlot)
template
<
class
C
,
class
hasNoHeatCapOverload
=
checkLiqHeatCap
>
template
<
class
C
,
class
hasNoHeatCapOverload
=
checkLiqHeatCap
>
auto
plotLiquidHeatCapacity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotLiquidHeatCapacity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoHeatCapOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoHeatCapOverload
{})(
declval
<
C
>
()))
::
value
&&
ComponentTraits
<
C
>::
hasLiquidState
,
void
>
{
{
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
liquidHeatCapacity
(
T
,
p
);
};
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
liquidHeatCapacity
(
T
,
p
);
};
plot
(
f
,
T
,
p
,
C
::
name
(),
"liquid"
,
"heat capacity"
,
"[J/(kg*K)]"
,
openPlot
);
plot
(
f
,
T
,
p
,
C
::
name
(),
"liquid"
,
"heat capacity"
,
"[J/(kg*K)]"
,
openPlot
);
...
@@ -132,7 +133,7 @@ auto plotLiquidHeatCapacity(const vector<double>& T, double p, bool openPlot)
...
@@ -132,7 +133,7 @@ auto plotLiquidHeatCapacity(const vector<double>& T, double p, bool openPlot)
template
<
class
C
,
class
hasNoViscOverload
=
checkLiqVisc
>
template
<
class
C
,
class
hasNoViscOverload
=
checkLiqVisc
>
auto
plotLiquidViscosity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotLiquidViscosity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoViscOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoViscOverload
{})(
declval
<
C
>
()))
::
value
&&
ComponentTraits
<
C
>::
hasLiquidState
,
void
>
{
{
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
liquidViscosity
(
T
,
p
);
};
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
liquidViscosity
(
T
,
p
);
};
plot
(
f
,
T
,
p
,
C
::
name
(),
"liquid"
,
"viscosity"
,
"[Pa*s]"
,
openPlot
);
plot
(
f
,
T
,
p
,
C
::
name
(),
"liquid"
,
"viscosity"
,
"[Pa*s]"
,
openPlot
);
...
@@ -140,7 +141,7 @@ auto plotLiquidViscosity(const vector<double>& T, double p, bool openPlot)
...
@@ -140,7 +141,7 @@ auto plotLiquidViscosity(const vector<double>& T, double p, bool openPlot)
template
<
class
C
,
class
hasNoThermCondOverload
=
checkLiqThermCond
>
template
<
class
C
,
class
hasNoThermCondOverload
=
checkLiqThermCond
>
auto
plotLiquidThermalConductivity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotLiquidThermalConductivity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoThermCondOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoThermCondOverload
{})(
declval
<
C
>
()))
::
value
&&
ComponentTraits
<
C
>::
hasLiquidState
,
void
>
{
{
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
liquidThermalConductivity
(
T
,
p
);
};
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
liquidThermalConductivity
(
T
,
p
);
};
plot
(
f
,
T
,
p
,
C
::
name
(),
"liquid"
,
"thermal conductivity"
,
"[J/(kg*K)]"
,
openPlot
);
plot
(
f
,
T
,
p
,
C
::
name
(),
"liquid"
,
"thermal conductivity"
,
"[J/(kg*K)]"
,
openPlot
);
...
@@ -148,7 +149,7 @@ auto plotLiquidThermalConductivity(const vector<double>& T, double p, bool openP
...
@@ -148,7 +149,7 @@ auto plotLiquidThermalConductivity(const vector<double>& T, double p, bool openP
template
<
class
C
,
class
hasNoDensityOverload
=
checkGasDen
>
template
<
class
C
,
class
hasNoDensityOverload
=
checkGasDen
>
auto
plotGasDensity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotGasDensity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoDensityOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoDensityOverload
{})(
declval
<
C
>
()))
::
value
&&
ComponentTraits
<
C
>::
hasGasState
,
void
>
{
{
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
gasDensity
(
T
,
p
);
};
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
gasDensity
(
T
,
p
);
};
plot
(
f
,
T
,
p
,
C
::
name
(),
"gas"
,
"density"
,
"[kg/^3]"
,
openPlot
);
plot
(
f
,
T
,
p
,
C
::
name
(),
"gas"
,
"density"
,
"[kg/^3]"
,
openPlot
);
...
@@ -156,7 +157,7 @@ auto plotGasDensity(const vector<double>& T, double p, bool openPlot)
...
@@ -156,7 +157,7 @@ auto plotGasDensity(const vector<double>& T, double p, bool openPlot)
template
<
class
C
,
class
hasNoEnthalpyOverload
=
checkGasEnth
>
template
<
class
C
,
class
hasNoEnthalpyOverload
=
checkGasEnth
>
auto
plotGasEnthalpy
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotGasEnthalpy
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoEnthalpyOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoEnthalpyOverload
{})(
declval
<
C
>
()))
::
value
&&
ComponentTraits
<
C
>::
hasGasState
,
void
>
{
{
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
gasEnthalpy
(
T
,
p
);
};
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
gasEnthalpy
(
T
,
p
);
};
plot
(
f
,
T
,
p
,
C
::
name
(),
"gas"
,
"enthalpy"
,
"[J/(kg)]"
,
openPlot
);
plot
(
f
,
T
,
p
,
C
::
name
(),
"gas"
,
"enthalpy"
,
"[J/(kg)]"
,
openPlot
);
...
@@ -164,7 +165,7 @@ auto plotGasEnthalpy(const vector<double>& T, double p, bool openPlot)
...
@@ -164,7 +165,7 @@ auto plotGasEnthalpy(const vector<double>& T, double p, bool openPlot)
template
<
class
C
,
class
hasNoHeatCapOverload
=
checkGasHeatCap
>
template
<
class
C
,
class
hasNoHeatCapOverload
=
checkGasHeatCap
>
auto
plotGasHeatCapacity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotGasHeatCapacity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoHeatCapOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoHeatCapOverload
{})(
declval
<
C
>
()))
::
value
&&
ComponentTraits
<
C
>::
hasGasState
,
void
>
{
{
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
gasHeatCapacity
(
T
,
p
);
};
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
gasHeatCapacity
(
T
,
p
);
};
plot
(
f
,
T
,
p
,
C
::
name
(),
"gas"
,
"heat capacity"
,
"[J/(kg*K)]"
,
openPlot
);
plot
(
f
,
T
,
p
,
C
::
name
(),
"gas"
,
"heat capacity"
,
"[J/(kg*K)]"
,
openPlot
);
...
@@ -172,7 +173,7 @@ auto plotGasHeatCapacity(const vector<double>& T, double p, bool openPlot)
...
@@ -172,7 +173,7 @@ auto plotGasHeatCapacity(const vector<double>& T, double p, bool openPlot)
template
<
class
C
,
class
hasNoViscOverload
=
checkGasVisc
>
template
<
class
C
,
class
hasNoViscOverload
=
checkGasVisc
>
auto
plotGasViscosity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotGasViscosity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoViscOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoViscOverload
{})(
declval
<
C
>
()))
::
value
&&
ComponentTraits
<
C
>::
hasGasState
,
void
>
{
{
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
gasViscosity
(
T
,
p
);
};
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
gasViscosity
(
T
,
p
);
};
plot
(
f
,
T
,
p
,
C
::
name
(),
"gas"
,
"viscosity"
,
"[Pa*s]"
,
openPlot
);
plot
(
f
,
T
,
p
,
C
::
name
(),
"gas"
,
"viscosity"
,
"[Pa*s]"
,
openPlot
);
...
@@ -180,7 +181,7 @@ auto plotGasViscosity(const vector<double>& T, double p, bool openPlot)
...
@@ -180,7 +181,7 @@ auto plotGasViscosity(const vector<double>& T, double p, bool openPlot)
template
<
class
C
,
class
hasNoThermCondOverload
=
checkGasThermCond
>
template
<
class
C
,
class
hasNoThermCondOverload
=
checkGasThermCond
>
auto
plotGasThermalConductivity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotGasThermalConductivity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoThermCondOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
->
typename
std
::
enable_if_t
<!
decltype
(
isValid
(
hasNoThermCondOverload
{})(
declval
<
C
>
()))
::
value
&&
ComponentTraits
<
C
>::
hasGasState
,
void
>
{
{
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
gasThermalConductivity
(
T
,
p
);
};
auto
f
=
[]
(
auto
T
,
auto
p
)
{
return
C
::
gasThermalConductivity
(
T
,
p
);
};
plot
(
f
,
T
,
p
,
C
::
name
(),
"gas"
,
"thermal conductivity"
,
"[J/(kg*K)]"
,
openPlot
);
plot
(
f
,
T
,
p
,
C
::
name
(),
"gas"
,
"thermal conductivity"
,
"[J/(kg*K)]"
,
openPlot
);
...
@@ -189,43 +190,43 @@ auto plotGasThermalConductivity(const vector<double>& T, double p, bool openPlot
...
@@ -189,43 +190,43 @@ auto plotGasThermalConductivity(const vector<double>& T, double p, bool openPlot
//! Do not plot properties if overloads don't compile
//! Do not plot properties if overloads don't compile
template
<
class
C
,
class
hasNoDensityOverload
=
checkLiqDen
>
template
<
class
C
,
class
hasNoDensityOverload
=
checkLiqDen
>
auto
plotLiquidDensity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotLiquidDensity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoDensityOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
{}
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoDensityOverload
{})(
declval
<
C
>
()))
::
value
||
!
ComponentTraits
<
C
>::
hasLiquidState
,
void
>
{}
template
<
class
C
,
class
hasNoEnthalpyOverload
=
checkLiqEnth
>
template
<
class
C
,
class
hasNoEnthalpyOverload
=
checkLiqEnth
>
auto
plotLiquidEnthalpy
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotLiquidEnthalpy
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoEnthalpyOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
{}
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoEnthalpyOverload
{})(
declval
<
C
>
()))
::
value
||
!
ComponentTraits
<
C
>::
hasLiquidState
,
void
>
{}
template
<
class
C
,
class
hasNoHeatCapOverload
=
checkLiqHeatCap
>
template
<
class
C
,
class
hasNoHeatCapOverload
=
checkLiqHeatCap
>
auto
plotLiquidHeatCapacity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotLiquidHeatCapacity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoHeatCapOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
{}
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoHeatCapOverload
{})(
declval
<
C
>
()))
::
value
||
!
ComponentTraits
<
C
>::
hasLiquidState
,
void
>
{}
template
<
class
C
,
class
hasNoViscOverload
=
checkLiqVisc
>
template
<
class
C
,
class
hasNoViscOverload
=
checkLiqVisc
>
auto
plotLiquidViscosity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotLiquidViscosity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoViscOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
{}
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoViscOverload
{})(
declval
<
C
>
()))
::
value
||
!
ComponentTraits
<
C
>::
hasLiquidState
,
void
>
{}
template
<
class
C
,
class
hasNoThermCondOverload
=
checkLiqThermCond
>
template
<
class
C
,
class
hasNoThermCondOverload
=
checkLiqThermCond
>
auto
plotLiquidThermalConductivity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotLiquidThermalConductivity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoThermCondOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
{}
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoThermCondOverload
{})(
declval
<
C
>
()))
::
value
||
!
ComponentTraits
<
C
>::
hasLiquidState
,
void
>
{}
template
<
class
C
,
class
hasNoDensityOverload
=
checkGasDen
>
template
<
class
C
,
class
hasNoDensityOverload
=
checkGasDen
>
auto
plotGasDensity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotGasDensity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoDensityOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
{}
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoDensityOverload
{})(
declval
<
C
>
()))
::
value
||
!
ComponentTraits
<
C
>::
hasGasState
,
void
>
{}
template
<
class
C
,
class
hasNoEnthalpyOverload
=
checkGasEnth
>
template
<
class
C
,
class
hasNoEnthalpyOverload
=
checkGasEnth
>
auto
plotGasEnthalpy
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotGasEnthalpy
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoEnthalpyOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
{}
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoEnthalpyOverload
{})(
declval
<
C
>
()))
::
value
||
!
ComponentTraits
<
C
>::
hasGasState
,
void
>
{}
template
<
class
C
,
class
hasNoHeatCapOverload
=
checkGasHeatCap
>
template
<
class
C
,
class
hasNoHeatCapOverload
=
checkGasHeatCap
>
auto
plotGasHeatCapacity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotGasHeatCapacity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoHeatCapOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
{}
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoHeatCapOverload
{})(
declval
<
C
>
()))
::
value
||
!
ComponentTraits
<
C
>::
hasGasState
,
void
>
{}
template
<
class
C
,
class
hasNoViscOverload
=
checkGasVisc
>
template
<
class
C
,
class
hasNoViscOverload
=
checkGasVisc
>
auto
plotGasViscosity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotGasViscosity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoViscOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
{}
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoViscOverload
{})(
declval
<
C
>
()))
::
value
||
!
ComponentTraits
<
C
>::
hasGasState
,
void
>
{}
template
<
class
C
,
class
hasNoThermCondOverload
=
checkGasThermCond
>
template
<
class
C
,
class
hasNoThermCondOverload
=
checkGasThermCond
>
auto
plotGasThermalConductivity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
auto
plotGasThermalConductivity
(
const
vector
<
double
>&
T
,
double
p
,
bool
openPlot
)
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoThermCondOverload
{})(
declval
<
C
>
()))
::
value
,
void
>
{}
->
typename
std
::
enable_if_t
<
decltype
(
isValid
(
hasNoThermCondOverload
{})(
declval
<
C
>
()))
::
value
||
!
ComponentTraits
<
C
>::
hasGasState
,
void
>
{}
//! a number of properties of a component
//! a number of properties of a component
template
<
class
Component
>
template
<
class
Component
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment