Network stitching into a new network. #2918
Unanswered
kizzle4shaw
asked this question in
Q&A
Replies: 1 comment 3 replies
-
pn2 will be attached to pn1. If you want to create three networks you should create a copy of pn1, like from copy import deepcopy
pn3 = deepcopy(pn1)
op.topotools.stitch(pn3, pn2, ...) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have created two cubic networks with different pore and throat distribution, the networks are pn and pn2, I tried using the stitch function to combine the networks but apparently the combination cannot be casted into a new network. My objective is to merge these networks and name them as pn3 which will be a new network with two different properties. Is there a way to achieve this? Maybe I'm misssing something, can someone please enlighten me.
Beta Was this translation helpful? Give feedback.
All reactions