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
net
cell
If one subclasses groups of net then one needs to use the global index of the cell (i.e. in the entire network):
net = jx.Network([cell for _ in range(5)]) net.cell(3).add_to_group("exc") net.exc.cell(3).set(...)
Contrary to that, for cell, one has to use the local index of the branch within the group:
cell = jx.Cell(Branch, [-1, 0, 0]) cell.branch(2).add_to_group("exc") cell.exc.branch(0).set(...)
The text was updated successfully, but these errors were encountered:
I think this can be closed, right @jnsbck ?
Sorry, something went wrong.
Should have been addressed in #447, will add a test for this in #453
No branches or pull requests
If one subclasses groups of
net
then one needs to use the global index of the cell (i.e. in the entire network):Contrary to that, for
cell
, one has to use the local index of the branch within the group:The text was updated successfully, but these errors were encountered: