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 b2ca260 commit 73b1f41Copy full SHA for 73b1f41
src/tools/pcmparser.py
@@ -539,7 +539,6 @@ def verify_medium(section):
539
def verify_green(section):
540
allowed = ("VACUUM", "UNIFORMDIELECTRIC", "SPHERICALSHARP")
541
allowed_der = ("NUMERICAL", "DERIVATIVE", "GRADIENT", "HESSIAN")
542
- allowed_profiles = ("TANH", "ERF", "LOG")
543
544
eps = section.get("EPS")
545
epsdyn = section.get("EPSDYN")
@@ -565,11 +564,6 @@ def verify_green(section):
565
564
print("EpsDyn not defined for UniformDielectric")
566
sys.exit(1)
567
568
- profile = section.get("PROFILE")
569
- if profile.get() not in allowed_profiles:
570
- print(("Allowed profiles are: {}".format(allowed_profiles)))
571
- sys.exit(1)
572
-
573
574
def check_array(name, array, offset):
575
dim = len(array)
0 commit comments