We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Setting Em in redsigneur does not work eg the following code which should set the Em of soma to -0.065 V does not change it:
import moose import rdesigneur as rd rdes = rd.rdesigneur( passiveDistrib = [['soma', 'Em', '-0.065']], ) rdes.buildModel() moose.reinit() moose.start( 1 ) print('soma Em = ', f"{moose.element('model/elec/soma').Em}")
It prints: soma Em = -0.0544
soma Em = -0.0544
If on the other hand I also declare another passive property like Cm before Em, it works:
import moose import rdesigneur as rd rdes = rd.rdesigneur( passiveDistrib = [['soma', 'Cm', '150e-12', 'Em', '-0.065']], ) rdes.buildModel() moose.reinit() moose.start( 1 ) print('soma Em = ', f"{moose.element('model/elec/soma').Em}")
The above code prints soma Em = -0.065
soma Em = -0.065
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Setting Em in redsigneur does not work eg the following code which should set the Em of soma to -0.065 V does not change it:
It prints:
soma Em = -0.0544
If on the other hand I also declare another passive property like Cm before Em, it works:
The above code prints
soma Em = -0.065
The text was updated successfully, but these errors were encountered: