remove duplicate empty lines

This commit is contained in:
Andreas Lauser
2013-11-07 16:09:28 +01:00
parent 921540d001
commit 1145e39559
12 changed files with 0 additions and 16 deletions

View File

@@ -62,7 +62,6 @@ public:
paramCache.updateAllPressures(fluidState); paramCache.updateAllPressures(fluidState);
} }
}; };
} // namespace Ewoms } // namespace Ewoms

View File

@@ -255,7 +255,6 @@ public:
/*pmax=*/pressureHigh_, /*pmax=*/pressureHigh_,
/*np=*/nPressure_); /*np=*/nPressure_);
fineLayerBottom_ = 22.0; fineLayerBottom_ = 22.0;
// intrinsic permeabilities // intrinsic permeabilities
@@ -303,7 +302,6 @@ public:
EWOMS_REGISTER_PARAM(TypeTag, std::string, SimulationName, "The name of the simulation used for the output files"); EWOMS_REGISTER_PARAM(TypeTag, std::string, SimulationName, "The name of the simulation used for the output files");
} }
/*! /*!
* \name Problem parameters * \name Problem parameters
*/ */

View File

@@ -81,7 +81,6 @@ private:
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem; typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
enum { wPhaseIdx = FluidSystem::wPhaseIdx }; enum { wPhaseIdx = FluidSystem::wPhaseIdx };
enum { nPhaseIdx = FluidSystem::nPhaseIdx }; enum { nPhaseIdx = FluidSystem::nPhaseIdx };
enum { gPhaseIdx = FluidSystem::gPhaseIdx }; enum { gPhaseIdx = FluidSystem::gPhaseIdx };
@@ -89,7 +88,6 @@ private:
// define the three-phase material law // define the three-phase material law
typedef Opm::ThreePParkerVanGenuchten<Scalar> ThreePLaw; typedef Opm::ThreePParkerVanGenuchten<Scalar> ThreePLaw;
public: public:
// wrap the three-phase law in an adaptor to make use the generic // wrap the three-phase law in an adaptor to make use the generic
// material law API // material law API

View File

@@ -263,7 +263,6 @@ public:
values.assignNaive(rightInitialFluidState_); values.assignNaive(rightInitialFluidState_);
} }
/*! /*!
* \copydoc VcfvProblem::source * \copydoc VcfvProblem::source
* *

View File

@@ -296,7 +296,6 @@ public:
//! \} //! \}
/*! /*!
* \name Soil parameters * \name Soil parameters
*/ */
@@ -386,7 +385,6 @@ public:
values.assignNaive(initialFluidState_); values.assignNaive(initialFluidState_);
} }
/*! /*!
* \copydoc VcfvProblem::constraints * \copydoc VcfvProblem::constraints
*/ */

View File

@@ -282,7 +282,6 @@ public:
return porosity_; return porosity_;
} }
/*! /*!
* \copydoc VcfvMultiPhaseProblem::materialLawParams * \copydoc VcfvMultiPhaseProblem::materialLawParams
*/ */

View File

@@ -440,7 +440,6 @@ private:
return x < eps_ && y <= 10; return x < eps_ && y <= 10;
} }
void initFluidStates_() void initFluidStates_()
{ {
initFluidState_(inletFluidState_, coarseMaterialParams_, /*isInlet=*/true); initFluidState_(inletFluidState_, coarseMaterialParams_, /*isInlet=*/true);

View File

@@ -118,7 +118,6 @@ class OutflowProblem
N2Idx = FluidSystem::N2Idx N2Idx = FluidSystem::N2Idx
}; };
typedef typename GridView::ctype CoordScalar; typedef typename GridView::ctype CoordScalar;
typedef Dune::FieldVector<CoordScalar, dimWorld> GlobalPosition; typedef Dune::FieldVector<CoordScalar, dimWorld> GlobalPosition;

View File

@@ -327,7 +327,6 @@ public:
values.assignNaive(initialFluidState_); values.assignNaive(initialFluidState_);
} }
/*! /*!
* \copydoc VcfvProblem::source * \copydoc VcfvProblem::source
* *

View File

@@ -208,7 +208,6 @@ public:
}; };
moleFrac[AirIdx] = 1 - moleFrac[H2OIdx]; moleFrac[AirIdx] = 1 - moleFrac[H2OIdx];
// parabolic velocity profile // parabolic velocity profile
Scalar y = this->bboxMax()[1] - pos[1]; Scalar y = this->bboxMax()[1] - pos[1];
Scalar x = pos[0] - this->bboxMin()[0]; Scalar x = pos[0] - this->bboxMin()[0];

View File

@@ -150,7 +150,6 @@ public:
int spaceIdx, int timeIdx) const int spaceIdx, int timeIdx) const
{ return 273.15 + 10; } // -> 10 deg C { return 273.15 + 10; } // -> 10 deg C
//! \} //! \}
/*! /*!
@@ -195,7 +194,6 @@ public:
} }
} }
//! \} //! \}
/*! /*!

View File

@@ -432,7 +432,6 @@ public:
//! \} //! \}
private: private:
bool onLeftBoundary_(const GlobalPosition &pos) const bool onLeftBoundary_(const GlobalPosition &pos) const
{ return pos[0] < eps_; } { return pos[0] < eps_; }