Re: error when using _SetElasticProperty with custom domain
Posted by
mumić on
URL: http://granoo.326.s1.nabble.com/error-when-using-SetElasticProperty-with-custom-domain-tp326p378.html
Oh, I see, thak you!
One problem I had is that when trying to convert, an exception is raised saying that my coordination number is too low while my domain has a coordination number of 11.75, the math I did was (2*num_bonds)/num_elements (4279 and 728 for num_bonds and num_elements respectivelly)
[PRE-PROCESSING][PlugIn _ConvertElementPairToBeam...]
Trying to compute automatically the coordination nummber value for automatic calibration
Ok, coordination number value is 3.402664e-01
[PRE-PROCESSING][PlugIn _ConvertElementPairToBeam...]
[ERROR]
####################################################
# An error was encountered ! The program must stop #
####################################################
You have to fix this problem, you may browse the source files to get more informations...
line : 209
in file : /home/tulio/programs/granoo/tags/2.0/Lib/GranOO/libPlugIn/ConvertElementPairToBeam.cpp
condition : 'Cn >= 5. && Cn <= 15.'
======================
-- Attached message --
======================
The value of coordination number Cn=0.340266 seems to be false. It is not in the common range of [5, 15]
python: /home/tulio/programs/granoo/tags/2.0/Lib/GranOO/libUtil/Macro.cpp:65: static void GranOO::Util::AssertMsg::RaiseUserAssertion(int, const string&, const string&, const string&): Assertion `0' failed.
Aborted (core dumped)
Is there any way to manually inflate the coordination number or make it read the correct one?
The code I used is right below, also note that the values I'm using for properties are arbitrary.
<?xml version="2.0" encoding="UTF-8" standalone="no"?>
<GranOO Version="2.0" TotIteration="0" OutDir="mch" Verbose="No" ThreadNumber="2" >
<PreProcessing>
<PlugIn Id="DomainConvert" File="./meshdata.npz"/>
<PlugIn Id="_SetDensity" Density="1000" />
<PlugIn Id="_ConvertElementPairToBeam" MacroYoungModulus="19e9" MacroPoissonRatio="0.24" MaxStress="30e6" Set="Global"/>
</PreProcessing>
<Processing>
</Processing>
<PostProcessing>
<PlugIn Id="_SaveDomain" />
</PostProcessing>
</GranOO>
Anyway, thank you for the help!