call GiveError('Stress initialization from file not available for Double-point') #233
Replies: 3 comments 2 replies
-
|
Hi Emre, |
Beta Was this translation helpful? Give feedback.
-
|
@Emre-ncche thanks for your report and possible solution. We will discuss with my colleagues and fix the issue! |
Beta Was this translation helpful? Give feedback.
-
|
Hi @Emre-ncche, |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello all,
I've recently working on a double-point method. I downloaded and compiled Anura3D_2024. Although I did not assign stresses from external file, I kept get the error 'Stress initialization from file not available for Double-point'. I've just looked at the related .FOR file then I suspected this part of the code may be written as reverse:
if(NFORMULATION==2) then
call GiveError('Stress initialization from file not available for Double-point')
RETURN
elseif (IsFollowUpPhase().or.(.not.CalParams%ApplyMapMPStressFromExtFile)) then
RETURN
end if
Then I shifted it as given below and compiled it again, the error disappeared and it ran.
if(NFORMULATION==2) then
if (IsFollowUpPhase() .or. (.not. CalParams%ApplyMapMPStressFromExtFile)) then
RETURN
else
call GiveError('Stress initialization from file not available for Double-point')
RETURN
end if
end if
I was curious, if anybody else further than me ever encountered this error in the double-point method.
Thanks in advance,
Emre
Beta Was this translation helpful? Give feedback.
All reactions