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-tp326.html

Hello Everyone!

Latelly I've been trying to rebuild a mesh generated on a FEM program on GranOO, for future uses.
The form I built this domain is using a homebrew python plugin as it follows:

import pygranoo as granoo
import numpy as np

class DomainConvert(granoo.plugin):

    def __init__(self):
        granoo.plugin.__init__(self, "DomainConvert")
       
    def run(self):
        self.elements = []
        self.pairs_ = []
        for el_coord in self.coords:
            self.elements.append(granoo.discrete_element(granoo.point(*el_coord)))
        for e1, e2 in self.pairs:
            self.pairs_.append(granoo.element_pair(self.elements[e1], self.elements[e2]))
           
        self.up = granoo.discrete_element_set("up")
        self.down = granoo.discrete_element_set("down")
       
        for de in granoo.element_set.glob():
            pos = de.get_pos()
            if pos.y == 1:
                self.up.add(de)
            elif pos.y == 0:
                self.down.add(de)
           
    def init(self):
        pass
       
    def read(self):
        r = granoo.reader.get()
        self.file = r.read_str(granoo.attr.REQUIRED, "File")
        self.file = np.load(self.file)
        self.coords = self.file['coords']
        self.pairs = self.file['pairs']

Where the imported file has two datafields: the coordinates for each node and the element pairs that exist, so I can build build my elements and elementpair. A image of a built domain with its pairs can be seen below. As I didn't define a radius to the elements, they are not visible, leaving only their pair links displayed as red.



Problem is, when I try to use _SetElasticProperties to convert the elementpairs to beams and define their micro properties, I face the following error:

[PRE-PROCESSING][PlugIn _SetElasticProperty...]
[WARNING] Be aware, max stress (brittle failure) feature is experimental !
These values were computed for a coordination number cn=8.000000e+00

UpdateElementAverageRadius with set id Core::SetOf<DEM::DiscreteElement>
Begin conversion from 'Core::Pair<DEM::Element>' to 'DEM::Beam'
I will convert 1466 items
free(): invalid pointer
Aborted (core dumped)

As I don't know how to fix or circumvent this problem, I come here. Would this problem be related to the use of CoordNumber or due to the lack of radii?

If someone can enlighten me on this, thank you so much!

The simulation code is found below and the npz file with mesh data can be found here.

<?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="_SetElasticProperty" YoungModulus="19e9" PoissonRatio="0.24" CoordNumber="8.0" MaxStress="30e6"/>
  </PreProcessing>
  <Processing>
  </Processing>
  <PostProcessing>
  </PostProcessing>
</GranOO>