We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f11b635 commit 6883044Copy full SHA for 6883044
glimy/__init__.py
@@ -1,7 +1,7 @@
1
print("Interacting with reality...")
2
import numpy as np
3
import sys
4
-import Glimy.geo
+import glimy.geo
5
6
import warnings
7
import time
@@ -379,6 +379,9 @@ def build(self,verbose=1):
379
self.__built_once=True
380
self.__built_isotropic=self.__anisotropy
381
self.__grid_generator_at_t_0()
382
+
383
+ if self.__anisotropy and (self.__conductivity or self.__conductivity_m):
384
+ raise NotImplementedError("Both conductive and anisotropic materials are not permitted.")
385
self.__instance=0
386
387
self.__E=np.zeros((3,)+self.__grid_size)
0 commit comments