operator extension saves information about cylindrical mesh special case r==0
This commit is contained in:
parent
f24d5e60fc
commit
8d10970c3c
@ -23,7 +23,10 @@ Operator_Extension::Operator_Extension(Operator* op)
|
|||||||
{
|
{
|
||||||
m_Op = op;
|
m_Op = op;
|
||||||
|
|
||||||
|
m_CC_R0_included = false;
|
||||||
m_Op_Cyl = dynamic_cast<Operator_Cylinder*>(op);
|
m_Op_Cyl = dynamic_cast<Operator_Cylinder*>(op);
|
||||||
|
if (m_Op_Cyl)
|
||||||
|
m_CC_R0_included=m_Op_Cyl->GetR0Included();
|
||||||
}
|
}
|
||||||
|
|
||||||
Operator_Extension::~Operator_Extension()
|
Operator_Extension::~Operator_Extension()
|
||||||
|
@ -70,6 +70,7 @@ protected:
|
|||||||
|
|
||||||
//Cylindrical FDTD Operator (not NULL if a cylindrical FDTD is used)
|
//Cylindrical FDTD Operator (not NULL if a cylindrical FDTD is used)
|
||||||
Operator_Cylinder* m_Op_Cyl;
|
Operator_Cylinder* m_Op_Cyl;
|
||||||
|
bool m_CC_R0_included;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // OPERATOR_EXTENSION_H
|
#endif // OPERATOR_EXTENSION_H
|
||||||
|
Loading…
Reference in New Issue
Block a user