Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Nektar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Giacomo Castiglioni
Nektar
Commits
371d23a7
Commit
371d23a7
authored
9 years ago
by
Chris Cantwell
Browse files
Options
Downloads
Patches
Plain Diff
Fix compile errors after merge.
parent
f2b508a3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
solvers/IncNavierStokesSolver/Forcing/ForcingMovingBody.cpp
+57
-57
57 additions, 57 deletions
solvers/IncNavierStokesSolver/Forcing/ForcingMovingBody.cpp
with
57 additions
and
57 deletions
solvers/IncNavierStokesSolver/Forcing/ForcingMovingBody.cpp
+
57
−
57
View file @
371d23a7
...
...
@@ -51,12 +51,12 @@ ForcingMovingBody::ForcingMovingBody(
}
void
ForcingMovingBody
::
v_InitObject
(
const
Array
<
OneD
,
MultiRegions
::
ExpListSharedPtr
>&
p
f
ields
,
const
Array
<
OneD
,
MultiRegions
::
ExpListSharedPtr
>&
p
F
ields
,
const
unsigned
int
&
pNumForcingFields
,
const
TiXmlElement
*
p
f
orce
)
const
TiXmlElement
*
p
F
orce
)
{
// Just 3D homogenous 1D problems can use this techinque
ASSERTL0
(
p
f
ields
[
0
]
->
GetExpType
()
==
MultiRegions
::
e3DH1D
,
ASSERTL0
(
p
F
ields
[
0
]
->
GetExpType
()
==
MultiRegions
::
e3DH1D
,
"Moving body implemented just for 3D Homogenous 1D expansions."
);
// At this point we know in the xml file where those quantities
...
...
@@ -65,13 +65,13 @@ void ForcingMovingBody::v_InitObject(
// m_zta and m_eta vectors (actuallythey are matrices) Array to control if
// the motion is determined by an equation or is from a file.(not Nektar++)
// check if we need to load a file or we have an equation
CheckIsFromFile
(
p
f
orce
);
CheckIsFromFile
(
p
F
orce
);
// Initialise movingbody filter
InitialiseFilter
(
m_session
,
p
f
ields
,
p
f
orce
);
InitialiseFilter
(
m_session
,
p
F
ields
,
p
F
orce
);
// Initialise the cable model
InitialiseCableModel
(
m_session
,
p
f
ields
);
InitialiseCableModel
(
m_session
,
p
F
ields
);
m_zta
=
Array
<
OneD
,
Array
<
OneD
,
NekDouble
>
>
(
10
);
m_eta
=
Array
<
OneD
,
Array
<
OneD
,
NekDouble
>
>
(
10
);
...
...
@@ -87,7 +87,7 @@ void ForcingMovingBody::v_InitObject(
// m_zta[8] = (d(m_zta)/dz)(d(m_eta)/dz)| m_eta[8] = (d(m_eta)/dz)(d(m_zta)/dz) |
// m_zta[9] = (d(zm_zta)/dz)^2 | m_eta[9] = (d(m_eta)/dz)^2 |
//--------------------------------------------------------------------------------
int
phystot
=
p
f
ields
[
0
]
->
GetTotPoints
();
int
phystot
=
p
F
ields
[
0
]
->
GetTotPoints
();
for
(
int
i
=
0
;
i
<
m_zta
.
num_elements
();
i
++
)
{
m_zta
[
i
]
=
Array
<
OneD
,
NekDouble
>
(
phystot
,
0.0
);
...
...
@@ -132,13 +132,13 @@ void ForcingMovingBody::v_Apply(
*
*/
void
ForcingMovingBody
::
UpdateMotion
(
const
Array
<
OneD
,
MultiRegions
::
ExpListSharedPtr
>&
p
f
ields
,
const
Array
<
OneD
,
MultiRegions
::
ExpListSharedPtr
>&
p
F
ields
,
const
Array
<
OneD
,
Array
<
OneD
,
NekDouble
>
>
&
fields
,
NekDouble
time
)
{
// Update the forces from the calculation of fluid field, which is
// implemented in the movingbody filter
m_MovBodyfilter
->
UpdateForce
(
m_session
,
p
f
ields
,
m_Aeroforces
,
time
);
m_MovBodyfilter
->
UpdateForce
(
m_session
,
p
F
ields
,
m_Aeroforces
,
time
);
// for "free" type, the cable vibrates both in streamwise and crossflow
// dimections, for "constrained" type, the cable only vibrates in crossflow
...
...
@@ -150,7 +150,7 @@ void ForcingMovingBody::UpdateMotion(
{
// For free vibration case, displacements, velocities and acceleartions
// are obtained through solving structure dynamic model
EvaluateStructDynModel
(
p
f
ields
,
time
);
EvaluateStructDynModel
(
p
F
ields
,
time
);
}
else
if
(
vibtype
==
"Forced"
||
vibtype
==
"FORCED"
)
{
...
...
@@ -165,9 +165,9 @@ void ForcingMovingBody::UpdateMotion(
}
else
{
EvaluateFunction
(
p
f
ields
,
m_session
,
m_motion
[
0
],
m_zta
[
j
],
EvaluateFunction
(
p
F
ields
,
m_session
,
m_motion
[
0
],
m_zta
[
j
],
m_funcName
[
j
],
time
);
EvaluateFunction
(
p
f
ields
,
m_session
,
m_motion
[
1
],
m_eta
[
j
],
EvaluateFunction
(
p
F
ields
,
m_session
,
m_motion
[
1
],
m_eta
[
j
],
m_funcName
[
j
],
time
);
cnt
=
cnt
+
2
;
}
...
...
@@ -177,7 +177,7 @@ void ForcingMovingBody::UpdateMotion(
{
for
(
int
plane
=
0
;
plane
<
m_np
;
plane
++
)
{
int
n
=
p
f
ields
[
0
]
->
GetPlane
(
plane
)
->
GetTotPoints
();
int
n
=
p
F
ields
[
0
]
->
GetPlane
(
plane
)
->
GetTotPoints
();
int
offset
=
plane
*
n
;
int
xoffset
=
var
*
m_np
+
plane
;
int
yoffset
=
3
*
m_np
+
xoffset
;
...
...
@@ -194,37 +194,37 @@ void ForcingMovingBody::UpdateMotion(
}
// Pass the variables of the cable's motion to the movingbody filter
m_MovBodyfilter
->
UpdateMotion
(
m_session
,
p
f
ields
,
m_MotionVars
,
time
);
m_MovBodyfilter
->
UpdateMotion
(
m_session
,
p
F
ields
,
m_MotionVars
,
time
);
// Now we need to calcualte all the required z-derivatives
bool
OriginalWaveSpace
=
p
f
ields
[
0
]
->
GetWaveSpace
();
p
f
ields
[
0
]
->
SetWaveSpace
(
false
);
bool
OriginalWaveSpace
=
p
F
ields
[
0
]
->
GetWaveSpace
();
p
F
ields
[
0
]
->
SetWaveSpace
(
false
);
p
f
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
p
F
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
m_zta
[
0
],
m_zta
[
3
]);
//d(m_zta)/dz
p
f
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
p
F
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
m_zta
[
3
],
m_zta
[
4
]);
//dd(m_zta)/ddzz
p
f
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
p
F
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
m_zta
[
4
],
m_zta
[
5
]);
//ddd(m_zta)/dddzzz
p
f
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
p
F
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
m_eta
[
0
],
m_eta
[
3
]);
//d(m_eta)/dz
p
f
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
p
F
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
m_eta
[
3
],
m_eta
[
4
]);
//dd(m_eta)/ddzz
p
f
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
p
F
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
m_eta
[
4
],
m_eta
[
5
]);
//ddd(m_eta)/dddzzz
p
f
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
p
F
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
m_zta
[
1
],
m_zta
[
6
]);
//dd(m_zta)/ddtz
p
f
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
p
F
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
m_zta
[
6
],
m_zta
[
7
]);
//ddd(m_zta)/ddtzz
p
f
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
p
F
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
m_eta
[
1
],
m_eta
[
6
]);
//dd(m_eta)/ddtz
p
f
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
p
F
ields
[
0
]
->
PhysDeriv
(
MultiRegions
::
DirCartesianMap
[
2
],
m_eta
[
6
],
m_eta
[
7
]);
//ddd(m_eta)/ddtzz
int
NumPoints
=
p
f
ields
[
0
]
->
GetTotPoints
();
int
NumPoints
=
p
F
ields
[
0
]
->
GetTotPoints
();
// (d(m_zta)/dz)(d(m_eta)/dz)
Vmath
::
Vmul
(
NumPoints
,
m_zta
[
3
],
1
,
m_eta
[
3
],
1
,
m_zta
[
8
],
1
);
...
...
@@ -236,7 +236,7 @@ void ForcingMovingBody::UpdateMotion(
// (d(m_eta)/dz)^2
Vmath
::
Vmul
(
NumPoints
,
m_eta
[
3
],
1
,
m_eta
[
3
],
1
,
m_eta
[
9
],
1
);
p
f
ields
[
0
]
->
SetWaveSpace
(
OriginalWaveSpace
);
p
F
ields
[
0
]
->
SetWaveSpace
(
OriginalWaveSpace
);
}
...
...
@@ -579,7 +579,7 @@ void ForcingMovingBody::CalculateForcing(
*
*/
void
ForcingMovingBody
::
TensionedCableModel
(
const
Array
<
OneD
,
MultiRegions
::
ExpListSharedPtr
>
&
p
f
ields
,
const
Array
<
OneD
,
MultiRegions
::
ExpListSharedPtr
>
&
p
F
ields
,
Array
<
OneD
,
NekDouble
>
&
AeroForces
,
Array
<
OneD
,
NekDouble
>
&
CableMotions
)
{
...
...
@@ -614,7 +614,7 @@ void ForcingMovingBody::TensionedCableModel(
fft_o
[
i
]
=
Array
<
OneD
,
NekDouble
>
(
npts
,
0.0
);
}
LibUtilities
::
CommSharedPtr
vcomm
=
p
f
ields
[
0
]
->
GetComm
();
LibUtilities
::
CommSharedPtr
vcomm
=
p
F
ields
[
0
]
->
GetComm
();
int
colrank
=
vcomm
->
GetColumnComm
()
->
GetRank
();
int
nproc
=
vcomm
->
GetColumnComm
()
->
GetSize
();
...
...
@@ -924,7 +924,7 @@ void ForcingMovingBody::TensionedCableModel(
*
*/
void
ForcingMovingBody
::
EvaluateStructDynModel
(
const
Array
<
OneD
,
MultiRegions
::
ExpListSharedPtr
>
&
p
f
ields
,
const
Array
<
OneD
,
MultiRegions
::
ExpListSharedPtr
>
&
p
F
ields
,
NekDouble
time
)
{
//Get the hydrodynamic forces from the fluid solver
...
...
@@ -1004,7 +1004,7 @@ void ForcingMovingBody::EvaluateStructDynModel(
{
int
offset
=
cn
*
3
*
m_np
;
Array
<
OneD
,
NekDouble
>
tmp
(
3
*
m_np
);
TensionedCableModel
(
p
f
ields
,
fces
[
cn
],
TensionedCableModel
(
p
F
ields
,
fces
[
cn
],
tmp
=
m_MotionVars
+
offset
);
}
...
...
@@ -1013,7 +1013,7 @@ void ForcingMovingBody::EvaluateStructDynModel(
{
for
(
int
plane
=
0
;
plane
<
m_np
;
plane
++
)
{
int
n
=
p
f
ields
[
0
]
->
GetPlane
(
plane
)
->
GetTotPoints
();
int
n
=
p
F
ields
[
0
]
->
GetPlane
(
plane
)
->
GetTotPoints
();
Array
<
OneD
,
NekDouble
>
tmp
;
...
...
@@ -1031,7 +1031,7 @@ void ForcingMovingBody::EvaluateStructDynModel(
*
*/
void
ForcingMovingBody
::
MappingBndConditions
(
const
Array
<
OneD
,
MultiRegions
::
ExpListSharedPtr
>
&
p
f
ields
,
const
Array
<
OneD
,
MultiRegions
::
ExpListSharedPtr
>
&
p
F
ields
,
const
Array
<
OneD
,
Array
<
OneD
,
NekDouble
>
>
&
fields
,
NekDouble
time
)
{
...
...
@@ -1052,8 +1052,8 @@ void ForcingMovingBody::MappingBndConditions(
Array
<
OneD
,
const
SpatialDomains
::
BoundaryConditionShPtr
>
bndConds
;
const
Array
<
OneD
,
const
NekDouble
>
z
=
p
f
ields
[
0
]
->
GetHomogeneousBasis
()
->
GetZ
();
int
nbnd
=
p
f
ields
[
0
]
->
GetBndCondExpansions
().
num_elements
();
=
p
F
ields
[
0
]
->
GetHomogeneousBasis
()
->
GetZ
();
int
nbnd
=
p
F
ields
[
0
]
->
GetBndCondExpansions
().
num_elements
();
for
(
int
i
=
0
;
i
<
nbnd
;
++
i
)
{
...
...
@@ -1061,9 +1061,9 @@ void ForcingMovingBody::MappingBndConditions(
{
for
(
int
dim
=
0
;
dim
<
m_motion
.
num_elements
();
dim
++
)
{
bndCondExps
=
p
f
ields
[
dim
]
->
GetPlane
(
plane
)
bndCondExps
=
p
F
ields
[
dim
]
->
GetPlane
(
plane
)
->
GetBndCondExpansions
();
bndConds
=
pFields
[
di
r
]
->
GetPlane
(
plane
)
->
GetBndConditions
();
bndConds
=
pFields
[
di
m
]
->
GetPlane
(
plane
)
->
GetBndConditions
();
if
(
boost
::
iequals
(
bndConds
[
i
]
->
GetUserDefined
(),
"MovingBody"
))
{
int
npoints
=
bndCondExps
[
i
]
->
GetNpoints
();
...
...
@@ -1072,7 +1072,7 @@ void ForcingMovingBody::MappingBndConditions(
Array
<
OneD
,
NekDouble
>
x2
(
npoints
,
0.0
);
Array
<
OneD
,
NekDouble
>
tmp
(
npoints
,
0.0
);
NekDouble
local_z
=
z
[
p
f
ields
[
0
]
->
GetTransposition
()
NekDouble
local_z
=
z
[
p
F
ields
[
0
]
->
GetTransposition
()
->
GetPlaneID
(
plane
)];
NekDouble
x2_in
=
0.5
*
m_lhom
*
(
1.0
+
local_z
);
// Homogeneous input case for x2.
...
...
@@ -1110,11 +1110,11 @@ void ForcingMovingBody::MappingBndConditions(
*/
void
ForcingMovingBody
::
InitialiseCableModel
(
const
LibUtilities
::
SessionReaderSharedPtr
&
pSession
,
const
Array
<
OneD
,
MultiRegions
::
ExpListSharedPtr
>
&
p
f
ields
)
const
Array
<
OneD
,
MultiRegions
::
ExpListSharedPtr
>
&
p
F
ields
)
{
// storage of spanwise-velocity for current and previous time levels
// used to calculate dw/dt in m_forcing term
int
nPointsTot
=
p
f
ields
[
0
]
->
GetNpoints
();
int
nPointsTot
=
p
F
ields
[
0
]
->
GetNpoints
();
m_W
=
Array
<
OneD
,
Array
<
OneD
,
NekDouble
>
>
(
2
);
for
(
int
n
=
0
;
n
<
2
;
++
n
)
{
...
...
@@ -1127,7 +1127,7 @@ void ForcingMovingBody::InitialiseCableModel(
m_movingBodyCalls
=
0
;
Array
<
OneD
,
unsigned
int
>
ZIDs
;
ZIDs
=
p
f
ields
[
0
]
->
GetZIDs
();
ZIDs
=
p
F
ields
[
0
]
->
GetZIDs
();
m_np
=
ZIDs
.
num_elements
();
m_Aeroforces
=
Array
<
OneD
,
NekDouble
>
(
2
*
m_np
,
0.0
);
...
...
@@ -1148,7 +1148,7 @@ void ForcingMovingBody::InitialiseCableModel(
return
;
}
LibUtilities
::
CommSharedPtr
vcomm
=
p
f
ields
[
0
]
->
GetComm
();
LibUtilities
::
CommSharedPtr
vcomm
=
p
F
ields
[
0
]
->
GetComm
();
bool
homostrip
;
m_session
->
MatchSolverInfo
(
"HomoStrip"
,
"True"
,
homostrip
,
false
);
...
...
@@ -1212,7 +1212,7 @@ void ForcingMovingBody::InitialiseCableModel(
}
// Setting the coefficient matrices for solving structural dynamic ODEs
SetDynEqCoeffMatrix
(
p
f
ields
);
SetDynEqCoeffMatrix
(
p
F
ields
);
// Set initial condition for cable's motion
int
cnt
=
0
;
...
...
@@ -1236,7 +1236,7 @@ void ForcingMovingBody::InitialiseCableModel(
}
else
{
nzpoints
=
p
f
ields
[
0
]
->
GetHomogeneousBasis
()
->
GetNumModes
();
nzpoints
=
p
F
ields
[
0
]
->
GetHomogeneousBasis
()
->
GetNumModes
();
}
...
...
@@ -1406,10 +1406,10 @@ void ForcingMovingBody::InitialiseCableModel(
if
(
!
homostrip
)
{
int
nzpoints
=
p
f
ields
[
0
]
->
GetHomogeneousBasis
()
->
GetNumModes
();
int
nzpoints
=
p
F
ields
[
0
]
->
GetHomogeneousBasis
()
->
GetNumModes
();
Array
<
OneD
,
NekDouble
>
z_coords
(
nzpoints
,
0.0
);
Array
<
OneD
,
const
NekDouble
>
pts
=
p
f
ields
[
0
]
->
GetHomogeneousBasis
()
->
GetZ
();
=
p
F
ields
[
0
]
->
GetHomogeneousBasis
()
->
GetZ
();
Vmath
::
Smul
(
nzpoints
,
m_lhom
/
2.0
,
pts
,
1
,
z_coords
,
1
);
Vmath
::
Sadd
(
nzpoints
,
m_lhom
/
2.0
,
z_coords
,
1
,
z_coords
,
1
);
...
...
@@ -1470,7 +1470,7 @@ void ForcingMovingBody::InitialiseCableModel(
*
*/
void
ForcingMovingBody
::
SetDynEqCoeffMatrix
(
const
Array
<
OneD
,
MultiRegions
::
ExpListSharedPtr
>
&
p
f
ields
)
const
Array
<
OneD
,
MultiRegions
::
ExpListSharedPtr
>
&
p
F
ields
)
{
int
nplanes
;
...
...
@@ -1631,7 +1631,7 @@ void ForcingMovingBody::EvaluateAccelaration(
/**
*
*/
void
ForcingMovingBody
::
CheckIsFromFile
(
const
TiXmlElement
*
p
f
orce
)
void
ForcingMovingBody
::
CheckIsFromFile
(
const
TiXmlElement
*
p
F
orce
)
{
m_funcName
=
Array
<
OneD
,
std
::
string
>
(
3
);
...
...
@@ -1648,7 +1648,7 @@ void ForcingMovingBody::CheckIsFromFile(const TiXmlElement* pforce)
//Get the body displacement: m_zta and m_eta
const
TiXmlElement
*
funcNameElmt_D
=
p
f
orce
->
FirstChildElement
(
"DISPLACEMENTS"
);
=
p
F
orce
->
FirstChildElement
(
"DISPLACEMENTS"
);
ASSERTL0
(
funcNameElmt_D
,
"MOVINGBODYFORCE tag has to specify a function name which "
"prescribes the body displacement as d(z,t)."
);
...
...
@@ -1659,7 +1659,7 @@ void ForcingMovingBody::CheckIsFromFile(const TiXmlElement* pforce)
//Get the body velocity of movement: d(m_zta)/dt and d(m_eta)/dt
const
TiXmlElement
*
funcNameElmt_V
=
p
f
orce
->
FirstChildElement
(
"VELOCITIES"
);
=
p
F
orce
->
FirstChildElement
(
"VELOCITIES"
);
ASSERTL0
(
funcNameElmt_D
,
"MOVINGBODYFORCE tag has to specify a function name which "
"prescribes the body velocity of movement as v(z,t)."
);
...
...
@@ -1671,7 +1671,7 @@ void ForcingMovingBody::CheckIsFromFile(const TiXmlElement* pforce)
//Get the body acceleration: dd(m_zta)/ddt and dd(m_eta)/ddt
const
TiXmlElement
*
funcNameElmt_A
=
p
f
orce
->
FirstChildElement
(
"ACCELERATIONS"
);
=
p
F
orce
->
FirstChildElement
(
"ACCELERATIONS"
);
ASSERTL0
(
funcNameElmt_A
,
"MOVINGBODYFORCE tag has to specify a function name which "
"prescribes the body acceleration as a(z,t)."
);
...
...
@@ -1784,15 +1784,15 @@ void ForcingMovingBody::CheckIsFromFile(const TiXmlElement* pforce)
*/
void
ForcingMovingBody
::
InitialiseFilter
(
const
LibUtilities
::
SessionReaderSharedPtr
&
pSession
,
const
Array
<
OneD
,
MultiRegions
::
ExpListSharedPtr
>
&
p
f
ields
,
const
TiXmlElement
*
p
f
orce
)
const
Array
<
OneD
,
MultiRegions
::
ExpListSharedPtr
>
&
p
F
ields
,
const
TiXmlElement
*
p
F
orce
)
{
// Get the outputfile name, output frequency and
// the boundary's ID for the cable's wall
std
::
string
typeStr
=
p
f
orce
->
Attribute
(
"TYPE"
);
std
::
string
typeStr
=
p
F
orce
->
Attribute
(
"TYPE"
);
std
::
map
<
std
::
string
,
std
::
string
>
vParams
;
const
TiXmlElement
*
param
=
p
f
orce
->
FirstChildElement
(
"PARAM"
);
const
TiXmlElement
*
param
=
p
F
orce
->
FirstChildElement
(
"PARAM"
);
while
(
param
)
{
ASSERTL0
(
param
->
Attribute
(
"NAME"
),
...
...
@@ -1815,7 +1815,7 @@ void ForcingMovingBody::InitialiseFilter(
AllocateSharedPtr
(
pSession
,
vParams
);
// Initialise the object of MovingBody filter
m_MovBodyfilter
->
Initialise
(
p
f
ields
,
0.0
);
m_MovBodyfilter
->
Initialise
(
p
F
ields
,
0.0
);
}
...
...
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