You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromsympde.topologyimportDomainfromsympde.topologyimportInteriorDomainfromsympde.topologyimportUnionfromsympde.topologyimportInterfacefromsympde.topologyimportConnectivityfromsympde.topologyimportBoundary# ... create a domain with 2 subdomains A and BA=InteriorDomain('A', dim=2)
B=InteriorDomain('B', dim=2)
connectivity=Connectivity()
bnd_A_1=Boundary('Gamma_1', A)
bnd_A_2=Boundary('Gamma_2', A)
bnd_A_3=Boundary('Gamma_3', A)
bnd_B_1=Boundary('Gamma_1', B)
bnd_B_2=Boundary('Gamma_2', B)
bnd_B_3=Boundary('Gamma_3', B)
connectivity['I'] =Interface('I', bnd_A_1, bnd_B_2)
Omega=Domain('Omega',
interiors=[A, B],
boundaries=[bnd_A_2, bnd_A_3, bnd_B_1, bnd_B_3],
connectivity=connectivity)
# exportOmega.export('omega.h5')
Now when reading the topological domain from the exported file, using;
We consider the following code:
Now when reading the topological domain from the exported file, using;
we get the following error
The text was updated successfully, but these errors were encountered: