Skip to content
Snippets Groups Projects
Commit af48c91b authored by Soeren Peters's avatar Soeren Peters
Browse files

Fix warnings.

parent c4380fa0
No related branches found
No related tags found
3 merge requests!403minor release 0.1.1,!402minor release 0.1.1,!388Add tests folder in project containing all kind of tests
......@@ -266,10 +266,11 @@ public:
return SPtr<GeometryBoundaryCondition>(new GeometryBoundaryCondition());
}
real vx, vy, vz;
real normalX, normalY, normalZ;
std::vector<real> normalXList, normalYList, normalZList;
real vx, vy, vz;
std::vector<real> vxList, vyList, vzList;
private:
......@@ -349,7 +350,7 @@ public:
real getVelocityZ() { return velocityZ; }
private:
PrecursorBoundaryCondition(SPtr<TransientBCInputFileReader> _reader, uint _timeStepsBetweenReads, real vx, real vy, real vz) : reader(_reader), timeStepsBetweenReads(_timeStepsBetweenReads), velocityX(vx), velocityY(vy), velocityZ(vz) { };
PrecursorBoundaryCondition(SPtr<TransientBCInputFileReader> _reader, uint _timeStepsBetweenReads, real vx, real vy, real vz) : timeStepsBetweenReads(_timeStepsBetweenReads), velocityX(vx), velocityY(vy), velocityZ(vz), reader(_reader) { };
virtual char getType() const override
{
return vf::gpu::BC_VELOCITY;
......
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