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-tp326p374.html
Hello and sorry for the very late reply.
Cédric Hubert wrote
• To reproduce your example, I need a 'main' Python file that loads the Python plugin and then runs the input file. I created one, which looks OK, but just to be sure, could you share your own ?
#!/usr/bin/python
# -*- coding: utf-8 -*-
import pygranoo as granoo
from PlugIn_DomainConvert import * # automatically added
p_DomainConvert = DomainConvert() # automatically added
import sys
sys.path.insert(0, './plugins/')
import sys
# Note : don't forget to import and instanciate your python plugins here
if __name__ == "__main__":
# computation management, get the single problem instance
# and run it
granoo.problem.get().run(sys.argv)
Cédric Hubert wrote
• Even with my main.py, I get an error that tells the 'ComputeVirialStress' plugin is missing. Did you included it in your input file ?
I did not include it on the input file as it was failing before reaching that step (I had it included but then I removed it).
Cédric Hubert wrote
• Finally, even with the 'ComputeVirialStress', the last error is that a SupportShape is needed to compute the domain volume fraction.
Is it needed if a volume fraction is input manually? I was planning on setting an value I'd calculate myself.
As again, sorry for the late reply and thank you a lot for the help.