fix: allow missing exciation...
This commit is contained in:
parent
0e6cb6a5b6
commit
02f929aa53
@ -784,8 +784,7 @@ int Operator::CalcECOperator( DebugFlags debugFlags )
|
|||||||
ApplyMagneticBC(PMC);
|
ApplyMagneticBC(PMC);
|
||||||
|
|
||||||
InitExcitation();
|
InitExcitation();
|
||||||
|
CalcFieldExcitation();
|
||||||
if (CalcFieldExcitation()==false) return -1;
|
|
||||||
|
|
||||||
//all information available for extension... create now...
|
//all information available for extension... create now...
|
||||||
for (size_t n=0; n<m_Op_exts.size(); ++n)
|
for (size_t n=0; n<m_Op_exts.size(); ++n)
|
||||||
|
@ -56,11 +56,11 @@ Engine* Operator_SSE_Compressed::CreateEngine() const
|
|||||||
|
|
||||||
int Operator_SSE_Compressed::CalcECOperator( DebugFlags debugFlags )
|
int Operator_SSE_Compressed::CalcECOperator( DebugFlags debugFlags )
|
||||||
{
|
{
|
||||||
Operator_sse::CalcECOperator( debugFlags );
|
int ErrCode = Operator_sse::CalcECOperator( debugFlags );
|
||||||
m_Use_Compression = false;
|
m_Use_Compression = false;
|
||||||
m_Use_Compression = CompressOperator();
|
m_Use_Compression = CompressOperator();
|
||||||
|
|
||||||
return 0;
|
return ErrCode;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Operator_SSE_Compressed::Init()
|
void Operator_SSE_Compressed::Init()
|
||||||
|
Loading…
Reference in New Issue
Block a user