Skip to content
Snippets Groups Projects
Commit 47a18314 authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[test_fluidsystems] Add missing qualifier Dumux.

GCC 4.9 complained about it.
(reviewed by martinb)


git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12822 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent e55261c9
No related branches found
No related tags found
No related merge requests found
...@@ -62,28 +62,28 @@ int main() ...@@ -62,28 +62,28 @@ int main()
// CompositionalFluidState // CompositionalFluidState
{ Dumux::CompositionalFluidState<Scalar, FluidSystem> fs; { Dumux::CompositionalFluidState<Scalar, FluidSystem> fs;
std::string collectedExceptions = checkFluidState<Scalar>(fs); std::string collectedExceptions = Dumux::checkFluidState<Scalar>(fs);
if (!collectedExceptions.empty()){ if (!collectedExceptions.empty()){
std::cout<<"Dumux::CompositionalFluidState: \n"<<collectedExceptions<<"\n"; std::cout<<"Dumux::CompositionalFluidState: \n"<<collectedExceptions<<"\n";
}} }}
// NonEquilibriumFluidState // NonEquilibriumFluidState
{ Dumux::NonEquilibriumFluidState<Scalar, FluidSystem> fs; { Dumux::NonEquilibriumFluidState<Scalar, FluidSystem> fs;
std::string collectedExceptions = checkFluidState<Scalar>(fs); std::string collectedExceptions = Dumux::checkFluidState<Scalar>(fs);
if (!collectedExceptions.empty()){ if (!collectedExceptions.empty()){
std::cout<<"Dumux::NonEquilibriumFluidState: \n"<<collectedExceptions<<"\n"; std::cout<<"Dumux::NonEquilibriumFluidState: \n"<<collectedExceptions<<"\n";
}} }}
// ImmiscibleFluidState // ImmiscibleFluidState
{ Dumux::ImmiscibleFluidState<Scalar, FluidSystem> fs; { Dumux::ImmiscibleFluidState<Scalar, FluidSystem> fs;
std::string collectedExceptions = checkFluidState<Scalar>(fs); std::string collectedExceptions = Dumux::checkFluidState<Scalar>(fs);
if (!collectedExceptions.empty()){ if (!collectedExceptions.empty()){
std::cout<<"Dumux::ImmiscibleFluidState: \n"<<collectedExceptions<<"\n"; std::cout<<"Dumux::ImmiscibleFluidState: \n"<<collectedExceptions<<"\n";
}} }}
// IsothermalImmiscibleFluidState // IsothermalImmiscibleFluidState
{ Dumux::IsothermalImmiscibleFluidState<Scalar, FluidSystem> fs; { Dumux::IsothermalImmiscibleFluidState<Scalar, FluidSystem> fs;
std::string collectedExceptions = checkFluidState<Scalar>(fs); std::string collectedExceptions = Dumux::checkFluidState<Scalar>(fs);
if (!collectedExceptions.empty()){ if (!collectedExceptions.empty()){
std::cout<<"Dumux::IsothermalImmiscibleFluidState: \n"<<collectedExceptions<<"\n"; std::cout<<"Dumux::IsothermalImmiscibleFluidState: \n"<<collectedExceptions<<"\n";
}} }}
...@@ -93,21 +93,21 @@ int main() ...@@ -93,21 +93,21 @@ int main()
// TemperatureOverlayFluidState // TemperatureOverlayFluidState
{ Dumux::TemperatureOverlayFluidState<Scalar, BaseFluidState> fs(baseFs); { Dumux::TemperatureOverlayFluidState<Scalar, BaseFluidState> fs(baseFs);
std::string collectedExceptions = checkFluidState<Scalar>(fs); std::string collectedExceptions = Dumux::checkFluidState<Scalar>(fs);
if (!collectedExceptions.empty()){ if (!collectedExceptions.empty()){
std::cout<<"Dumux::TemperatureOverlayFluidState: \n"<<collectedExceptions<<"\n"; std::cout<<"Dumux::TemperatureOverlayFluidState: \n"<<collectedExceptions<<"\n";
} } } }
// PressureOverlayFluidState // PressureOverlayFluidState
{ Dumux::PressureOverlayFluidState<Scalar, BaseFluidState> fs(baseFs); { Dumux::PressureOverlayFluidState<Scalar, BaseFluidState> fs(baseFs);
std::string collectedExceptions = checkFluidState<Scalar>(fs); std::string collectedExceptions = Dumux::checkFluidState<Scalar>(fs);
if (!collectedExceptions.empty()){ if (!collectedExceptions.empty()){
std::cout<<"Dumux::PressureOverlayFluidState: \n"<<collectedExceptions<<"\n"; std::cout<<"Dumux::PressureOverlayFluidState: \n"<<collectedExceptions<<"\n";
}} }}
// SaturationOverlayFluidState // SaturationOverlayFluidState
{ Dumux::SaturationOverlayFluidState<Scalar, BaseFluidState> fs(baseFs); { Dumux::SaturationOverlayFluidState<Scalar, BaseFluidState> fs(baseFs);
std::string collectedExceptions = checkFluidState<Scalar>(fs); std::string collectedExceptions = Dumux::checkFluidState<Scalar>(fs);
if (!collectedExceptions.empty()){ if (!collectedExceptions.empty()){
std::cout<<"Dumux::SaturationOverlayFluidState: \n"<<collectedExceptions<<"\n"; std::cout<<"Dumux::SaturationOverlayFluidState: \n"<<collectedExceptions<<"\n";
}} }}
...@@ -115,63 +115,63 @@ int main() ...@@ -115,63 +115,63 @@ int main()
// H2O -- N2 // H2O -- N2
{ typedef Dumux::FluidSystems::H2ON2<Scalar, /*enableComplexRelations=*/false> FluidSystem; { typedef Dumux::FluidSystems::H2ON2<Scalar, /*enableComplexRelations=*/false> FluidSystem;
checkFluidSystem<Scalar, FluidSystem>(); } Dumux::checkFluidSystem<Scalar, FluidSystem>(); }
{ typedef Dumux::FluidSystems::H2ON2<Scalar, /*enableComplexRelations=*/true> FluidSystem; { typedef Dumux::FluidSystems::H2ON2<Scalar, /*enableComplexRelations=*/true> FluidSystem;
checkFluidSystem<Scalar, FluidSystem>(); } Dumux::checkFluidSystem<Scalar, FluidSystem>(); }
// H2O -- N2 -- liquid phase // H2O -- N2 -- liquid phase
{ typedef Dumux::FluidSystems::H2ON2LiquidPhase<Scalar, /*enableComplexRelations=*/false> FluidSystem; { typedef Dumux::FluidSystems::H2ON2LiquidPhase<Scalar, /*enableComplexRelations=*/false> FluidSystem;
checkFluidSystem<Scalar, FluidSystem>(); } Dumux::checkFluidSystem<Scalar, FluidSystem>(); }
{ typedef Dumux::FluidSystems::H2ON2LiquidPhase<Scalar, /*enableComplexRelations=*/true> FluidSystem; { typedef Dumux::FluidSystems::H2ON2LiquidPhase<Scalar, /*enableComplexRelations=*/true> FluidSystem;
checkFluidSystem<Scalar, FluidSystem>(); } Dumux::checkFluidSystem<Scalar, FluidSystem>(); }
// H2O -- Air // H2O -- Air
{ typedef Dumux::SimpleH2O<Scalar> H2O; { typedef Dumux::SimpleH2O<Scalar> H2O;
const bool enableComplexRelations=false; const bool enableComplexRelations=false;
typedef Dumux::FluidSystems::H2OAir<Scalar, H2O, enableComplexRelations> FluidSystem; typedef Dumux::FluidSystems::H2OAir<Scalar, H2O, enableComplexRelations> FluidSystem;
checkFluidSystem<Scalar, FluidSystem>(); } Dumux::checkFluidSystem<Scalar, FluidSystem>(); }
{ typedef Dumux::SimpleH2O<Scalar> H2O; { typedef Dumux::SimpleH2O<Scalar> H2O;
const bool enableComplexRelations=true; const bool enableComplexRelations=true;
typedef Dumux::FluidSystems::H2OAir<Scalar, H2O, enableComplexRelations> FluidSystem; typedef Dumux::FluidSystems::H2OAir<Scalar, H2O, enableComplexRelations> FluidSystem;
checkFluidSystem<Scalar, FluidSystem>(); } Dumux::checkFluidSystem<Scalar, FluidSystem>(); }
{ typedef Dumux::H2O<Scalar> H2O; { typedef Dumux::H2O<Scalar> H2O;
const bool enableComplexRelations=false; const bool enableComplexRelations=false;
typedef Dumux::FluidSystems::H2OAir<Scalar, H2O, enableComplexRelations> FluidSystem; typedef Dumux::FluidSystems::H2OAir<Scalar, H2O, enableComplexRelations> FluidSystem;
checkFluidSystem<Scalar, FluidSystem>(); } Dumux::checkFluidSystem<Scalar, FluidSystem>(); }
{ typedef Dumux::H2O<Scalar> H2O; { typedef Dumux::H2O<Scalar> H2O;
const bool enableComplexRelations=true; const bool enableComplexRelations=true;
typedef Dumux::FluidSystems::H2OAir<Scalar, H2O, enableComplexRelations> FluidSystem; typedef Dumux::FluidSystems::H2OAir<Scalar, H2O, enableComplexRelations> FluidSystem;
checkFluidSystem<Scalar, FluidSystem>(); } Dumux::checkFluidSystem<Scalar, FluidSystem>(); }
// H2O -- Air -- Mesitylene // H2O -- Air -- Mesitylene
{ typedef Dumux::FluidSystems::H2OAirMesitylene<Scalar> FluidSystem; { typedef Dumux::FluidSystems::H2OAirMesitylene<Scalar> FluidSystem;
checkFluidSystem<Scalar, FluidSystem>(); } Dumux::checkFluidSystem<Scalar, FluidSystem>(); }
// H2O -- Air -- Xylene // H2O -- Air -- Xylene
{ typedef Dumux::FluidSystems::H2OAirXylene<Scalar> FluidSystem; { typedef Dumux::FluidSystems::H2OAirXylene<Scalar> FluidSystem;
checkFluidSystem<Scalar, FluidSystem>(); } Dumux::checkFluidSystem<Scalar, FluidSystem>(); }
// 2p-immiscible // 2p-immiscible
{ typedef Dumux::FluidSystems::TwoPImmiscible<Scalar, Liquid, Liquid> FluidSystem; { typedef Dumux::FluidSystems::TwoPImmiscible<Scalar, Liquid, Liquid> FluidSystem;
checkFluidSystem<Scalar, FluidSystem>(); } Dumux::checkFluidSystem<Scalar, FluidSystem>(); }
{ typedef Dumux::FluidSystems::TwoPImmiscible<Scalar, Liquid, Gas> FluidSystem; { typedef Dumux::FluidSystems::TwoPImmiscible<Scalar, Liquid, Gas> FluidSystem;
checkFluidSystem<Scalar, FluidSystem>(); } Dumux::checkFluidSystem<Scalar, FluidSystem>(); }
{ typedef Dumux::FluidSystems::TwoPImmiscible<Scalar, Gas, Liquid> FluidSystem; { typedef Dumux::FluidSystems::TwoPImmiscible<Scalar, Gas, Liquid> FluidSystem;
checkFluidSystem<Scalar, FluidSystem>(); } Dumux::checkFluidSystem<Scalar, FluidSystem>(); }
// 1p // 1p
{ typedef Dumux::FluidSystems::OneP<Scalar, Liquid> FluidSystem; { typedef Dumux::FluidSystems::OneP<Scalar, Liquid> FluidSystem;
checkFluidSystem<Scalar, FluidSystem>(); } Dumux::checkFluidSystem<Scalar, FluidSystem>(); }
{ typedef Dumux::FluidSystems::OneP<Scalar, Gas> FluidSystem; { typedef Dumux::FluidSystems::OneP<Scalar, Gas> FluidSystem;
checkFluidSystem<Scalar, FluidSystem>(); } Dumux::checkFluidSystem<Scalar, FluidSystem>(); }
return 0; return 0;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment