Skip to content
New issue

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

Issue with setting passiveDistrib in rdesigneur #468

Open
analkumar2 opened this issue Feb 19, 2024 · 0 comments
Open

Issue with setting passiveDistrib in rdesigneur #468

analkumar2 opened this issue Feb 19, 2024 · 0 comments

Comments

@analkumar2
Copy link
Contributor

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

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant