fiqus 2024.7.0__py3-none-any.whl → 2024.12.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fiqus/MainFiQuS.py +290 -134
- fiqus/data/DataConductor.py +301 -301
- fiqus/data/DataFiQuS.py +128 -84
- fiqus/data/DataFiQuSCCT.py +150 -150
- fiqus/data/DataFiQuSConductor.py +84 -84
- fiqus/data/DataFiQuSConductorAC_Strand.py +565 -565
- fiqus/data/DataFiQuSMultipole.py +716 -42
- fiqus/data/DataFiQuSPancake3D.py +737 -278
- fiqus/data/DataMultipole.py +180 -15
- fiqus/data/DataRoxieParser.py +90 -51
- fiqus/data/DataSettings.py +121 -0
- fiqus/data/DataWindingsCCT.py +37 -37
- fiqus/data/RegionsModelFiQuS.py +18 -6
- fiqus/geom_generators/GeometryCCT.py +905 -905
- fiqus/geom_generators/GeometryConductorAC_Strand.py +1391 -1391
- fiqus/geom_generators/GeometryMultipole.py +1827 -227
- fiqus/geom_generators/GeometryPancake3D.py +316 -117
- fiqus/geom_generators/GeometryPancake3DUtils.py +549 -0
- fiqus/getdp_runners/RunGetdpCCT.py +4 -4
- fiqus/getdp_runners/RunGetdpConductorAC_Strand.py +201 -201
- fiqus/getdp_runners/RunGetdpMultipole.py +115 -42
- fiqus/getdp_runners/RunGetdpPancake3D.py +28 -6
- fiqus/mains/MainCCT.py +2 -2
- fiqus/mains/MainConductorAC_Strand.py +132 -132
- fiqus/mains/MainMultipole.py +113 -62
- fiqus/mains/MainPancake3D.py +63 -23
- fiqus/mesh_generators/MeshCCT.py +209 -209
- fiqus/mesh_generators/MeshConductorAC_Strand.py +656 -656
- fiqus/mesh_generators/MeshMultipole.py +1243 -181
- fiqus/mesh_generators/MeshPancake3D.py +275 -192
- fiqus/parsers/ParserCOND.py +825 -0
- fiqus/parsers/ParserDAT.py +16 -16
- fiqus/parsers/ParserGetDPOnSection.py +212 -212
- fiqus/parsers/ParserGetDPTimeTable.py +134 -134
- fiqus/parsers/ParserMSH.py +53 -53
- fiqus/parsers/ParserPOS.py +214 -214
- fiqus/parsers/ParserRES.py +142 -142
- fiqus/plotters/PlotPythonCCT.py +133 -133
- fiqus/plotters/PlotPythonConductorAC.py +855 -855
- fiqus/plotters/PlotPythonMultipole.py +18 -18
- fiqus/post_processors/PostProcessCCT.py +440 -440
- fiqus/post_processors/PostProcessConductorAC.py +49 -49
- fiqus/post_processors/PostProcessMultipole.py +353 -229
- fiqus/post_processors/PostProcessPancake3D.py +8 -13
- fiqus/pre_processors/PreProcessCCT.py +175 -175
- fiqus/pro_assemblers/ProAssembler.py +14 -6
- fiqus/pro_material_functions/ironBHcurves.pro +246 -246
- fiqus/pro_templates/combined/CCT_template.pro +274 -274
- fiqus/pro_templates/combined/ConductorAC_template.pro +1025 -1025
- fiqus/pro_templates/combined/Multipole_template.pro +1694 -126
- fiqus/pro_templates/combined/Pancake3D_template.pro +2294 -1103
- fiqus/pro_templates/combined/TSA_materials.pro +162 -0
- fiqus/pro_templates/combined/materials.pro +36 -18
- fiqus/utils/Utils.py +508 -110
- fiqus/utils/update_data_settings.py +33 -0
- fiqus-2024.12.1.dist-info/METADATA +132 -0
- fiqus-2024.12.1.dist-info/RECORD +84 -0
- {fiqus-2024.7.0.dist-info → fiqus-2024.12.1.dist-info}/WHEEL +1 -1
- tests/test_FiQuS.py +1 -1
- tests/test_geometry_generators.py +101 -2
- tests/test_mesh_generators.py +154 -1
- tests/test_solvers.py +115 -21
- tests/utils/fiqus_test_classes.py +85 -21
- tests/utils/generate_reference_files_ConductorAC.py +57 -57
- tests/utils/generate_reference_files_Pancake3D.py +4 -5
- tests/utils/helpers.py +97 -97
- fiqus-2024.7.0.dist-info/METADATA +0 -103
- fiqus-2024.7.0.dist-info/RECORD +0 -79
- {fiqus-2024.7.0.dist-info → fiqus-2024.12.1.dist-info}/top_level.txt +0 -0
tests/utils/helpers.py
CHANGED
|
@@ -1,97 +1,97 @@
|
|
|
1
|
-
import functools
|
|
2
|
-
import itertools
|
|
3
|
-
import operator
|
|
4
|
-
import os
|
|
5
|
-
import unittest
|
|
6
|
-
from pathlib import Path
|
|
7
|
-
|
|
8
|
-
import numpy as np
|
|
9
|
-
|
|
10
|
-
from fiqus.data.DataFiQuS import FDM
|
|
11
|
-
from fiqus.utils.Utils import FilesAndFolders as FFs
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
class Paths:
|
|
15
|
-
"""
|
|
16
|
-
Helper class used in FiQuS tests to get file and folder paths
|
|
17
|
-
:param model_name: name of yaml input file (without .yaml)
|
|
18
|
-
:param f_extension: file extension to apply to the folders, for example '.brep' or '.msh'
|
|
19
|
-
:return: tuple: fdm, outputs_folder, input_folder, input_file, model_folder, model_file, reference_folder, reference_file
|
|
20
|
-
"""
|
|
21
|
-
|
|
22
|
-
def __init__(self, model_name, f_extension=''):
|
|
23
|
-
self.inputs_folder_name = '_inputs'
|
|
24
|
-
self.outputs_folder_name = '_outputs'
|
|
25
|
-
self.references_folder_name = '_references'
|
|
26
|
-
|
|
27
|
-
self.test_outputs_folder = os.path.join(os.getcwd(), self.outputs_folder_name)
|
|
28
|
-
self.inputs_folder = os.path.join(os.getcwd(), self.inputs_folder_name, model_name)
|
|
29
|
-
self.model_folder = os.path.join(os.getcwd(), self.outputs_folder_name, model_name)
|
|
30
|
-
self.references_folder = os.path.join(os.getcwd(), self.references_folder_name, model_name)
|
|
31
|
-
|
|
32
|
-
self.input_file = os.path.join(self.inputs_folder, f'{model_name}.yaml')
|
|
33
|
-
self.model_file = os.path.join(self.model_folder, f'{model_name}.{f_extension}')
|
|
34
|
-
self.reference_file = os.path.join(self.references_folder, f'{model_name}.{f_extension}')
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
def filecmp(filename1, filename2):
|
|
38
|
-
"""
|
|
39
|
-
From: https://stackoverflow.com/questions/254350/in-python-is-there-a-concise-way-of-comparing-whether-the-contents-of-two-text
|
|
40
|
-
Do the two files have exactly the same contents?
|
|
41
|
-
"""
|
|
42
|
-
with open(filename1, "rb") as fp1, open(filename2, "rb") as fp2:
|
|
43
|
-
print(f'The {filename1} size is: {os.fstat(fp1.fileno()).st_size} b')
|
|
44
|
-
print(f'The {filename2} size is: {os.fstat(fp2.fileno()).st_size} b')
|
|
45
|
-
if os.fstat(fp1.fileno()).st_size != os.fstat(fp2.fileno()).st_size:
|
|
46
|
-
return False # different sizes ∴ not equal
|
|
47
|
-
|
|
48
|
-
# set up one 4k-reader for each file
|
|
49
|
-
fp1_reader = functools.partial(fp1.read, 4096)
|
|
50
|
-
fp2_reader = functools.partial(fp2.read, 4096)
|
|
51
|
-
|
|
52
|
-
# pair each 4k-chunk from the two readers while they do not return '' (EOF)
|
|
53
|
-
cmp_pairs = zip(iter(fp1_reader, b''), iter(fp2_reader, b''))
|
|
54
|
-
|
|
55
|
-
# return True for all pairs that are not equal
|
|
56
|
-
inequalities = itertools.starmap(operator.ne, cmp_pairs)
|
|
57
|
-
ineqs = []
|
|
58
|
-
for ineq in inequalities:
|
|
59
|
-
ineqs.append(ineq)
|
|
60
|
-
# voila; any() stops at first True value
|
|
61
|
-
print(f'The file comp function gives: {not any(inequalities)}')
|
|
62
|
-
return not any(inequalities)
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
def assert_two_parameters(true_value, test_value):
|
|
66
|
-
"""
|
|
67
|
-
Some functions used in multiple test functions
|
|
68
|
-
**Assert two parameters - accepts multiple types**
|
|
69
|
-
"""
|
|
70
|
-
# TODO: improve robustness and readability
|
|
71
|
-
test_case = unittest.TestCase()
|
|
72
|
-
|
|
73
|
-
if isinstance(true_value, np.ndarray) or isinstance(true_value, list):
|
|
74
|
-
if len(true_value) == 1:
|
|
75
|
-
true_value = float(true_value)
|
|
76
|
-
|
|
77
|
-
if isinstance(test_value, np.ndarray) or isinstance(test_value, list):
|
|
78
|
-
if len(test_value) == 1:
|
|
79
|
-
test_value = float(test_value)
|
|
80
|
-
|
|
81
|
-
# Comparison
|
|
82
|
-
if isinstance(test_value, np.ndarray) or isinstance(test_value, list):
|
|
83
|
-
if np.array(true_value).ndim == 2:
|
|
84
|
-
for i, test_row in enumerate(test_value):
|
|
85
|
-
if isinstance(test_row[0], np.floating):
|
|
86
|
-
test_row = np.array(test_row).round(10)
|
|
87
|
-
true_value[i] = np.array(true_value[i]).round(10)
|
|
88
|
-
|
|
89
|
-
test_case.assertListEqual(list(test_row), list(true_value[i]))
|
|
90
|
-
else:
|
|
91
|
-
if isinstance(test_value[0], np.floating):
|
|
92
|
-
test_value = np.array(test_value).round(10)
|
|
93
|
-
true_value = np.array(true_value).round(10)
|
|
94
|
-
|
|
95
|
-
test_case.assertListEqual(list(test_value), list(true_value))
|
|
96
|
-
else:
|
|
97
|
-
test_case.assertEqual(test_value, true_value)
|
|
1
|
+
import functools
|
|
2
|
+
import itertools
|
|
3
|
+
import operator
|
|
4
|
+
import os
|
|
5
|
+
import unittest
|
|
6
|
+
from pathlib import Path
|
|
7
|
+
|
|
8
|
+
import numpy as np
|
|
9
|
+
|
|
10
|
+
from fiqus.data.DataFiQuS import FDM
|
|
11
|
+
from fiqus.utils.Utils import FilesAndFolders as FFs
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class Paths:
|
|
15
|
+
"""
|
|
16
|
+
Helper class used in FiQuS tests to get file and folder paths
|
|
17
|
+
:param model_name: name of yaml input file (without .yaml)
|
|
18
|
+
:param f_extension: file extension to apply to the folders, for example '.brep' or '.msh'
|
|
19
|
+
:return: tuple: fdm, outputs_folder, input_folder, input_file, model_folder, model_file, reference_folder, reference_file
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
def __init__(self, model_name, f_extension=''):
|
|
23
|
+
self.inputs_folder_name = '_inputs'
|
|
24
|
+
self.outputs_folder_name = '_outputs'
|
|
25
|
+
self.references_folder_name = '_references'
|
|
26
|
+
|
|
27
|
+
self.test_outputs_folder = os.path.join(os.getcwd(), self.outputs_folder_name)
|
|
28
|
+
self.inputs_folder = os.path.join(os.getcwd(), self.inputs_folder_name, model_name)
|
|
29
|
+
self.model_folder = os.path.join(os.getcwd(), self.outputs_folder_name, model_name)
|
|
30
|
+
self.references_folder = os.path.join(os.getcwd(), self.references_folder_name, model_name)
|
|
31
|
+
|
|
32
|
+
self.input_file = os.path.join(self.inputs_folder, f'{model_name}.yaml')
|
|
33
|
+
self.model_file = os.path.join(self.model_folder, f'{model_name}.{f_extension}')
|
|
34
|
+
self.reference_file = os.path.join(self.references_folder, f'{model_name}.{f_extension}')
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
def filecmp(filename1, filename2):
|
|
38
|
+
"""
|
|
39
|
+
From: https://stackoverflow.com/questions/254350/in-python-is-there-a-concise-way-of-comparing-whether-the-contents-of-two-text
|
|
40
|
+
Do the two files have exactly the same contents?
|
|
41
|
+
"""
|
|
42
|
+
with open(filename1, "rb") as fp1, open(filename2, "rb") as fp2:
|
|
43
|
+
print(f'The {filename1} size is: {os.fstat(fp1.fileno()).st_size} b')
|
|
44
|
+
print(f'The {filename2} size is: {os.fstat(fp2.fileno()).st_size} b')
|
|
45
|
+
if os.fstat(fp1.fileno()).st_size != os.fstat(fp2.fileno()).st_size:
|
|
46
|
+
return False # different sizes ∴ not equal
|
|
47
|
+
|
|
48
|
+
# set up one 4k-reader for each file
|
|
49
|
+
fp1_reader = functools.partial(fp1.read, 4096)
|
|
50
|
+
fp2_reader = functools.partial(fp2.read, 4096)
|
|
51
|
+
|
|
52
|
+
# pair each 4k-chunk from the two readers while they do not return '' (EOF)
|
|
53
|
+
cmp_pairs = zip(iter(fp1_reader, b''), iter(fp2_reader, b''))
|
|
54
|
+
|
|
55
|
+
# return True for all pairs that are not equal
|
|
56
|
+
inequalities = itertools.starmap(operator.ne, cmp_pairs)
|
|
57
|
+
ineqs = []
|
|
58
|
+
for ineq in inequalities:
|
|
59
|
+
ineqs.append(ineq)
|
|
60
|
+
# voila; any() stops at first True value
|
|
61
|
+
print(f'The file comp function gives: {not any(inequalities)}')
|
|
62
|
+
return not any(inequalities)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
def assert_two_parameters(true_value, test_value):
|
|
66
|
+
"""
|
|
67
|
+
Some functions used in multiple test functions
|
|
68
|
+
**Assert two parameters - accepts multiple types**
|
|
69
|
+
"""
|
|
70
|
+
# TODO: improve robustness and readability
|
|
71
|
+
test_case = unittest.TestCase()
|
|
72
|
+
|
|
73
|
+
if isinstance(true_value, np.ndarray) or isinstance(true_value, list):
|
|
74
|
+
if len(true_value) == 1:
|
|
75
|
+
true_value = float(true_value)
|
|
76
|
+
|
|
77
|
+
if isinstance(test_value, np.ndarray) or isinstance(test_value, list):
|
|
78
|
+
if len(test_value) == 1:
|
|
79
|
+
test_value = float(test_value)
|
|
80
|
+
|
|
81
|
+
# Comparison
|
|
82
|
+
if isinstance(test_value, np.ndarray) or isinstance(test_value, list):
|
|
83
|
+
if np.array(true_value).ndim == 2:
|
|
84
|
+
for i, test_row in enumerate(test_value):
|
|
85
|
+
if isinstance(test_row[0], np.floating):
|
|
86
|
+
test_row = np.array(test_row).round(10)
|
|
87
|
+
true_value[i] = np.array(true_value[i]).round(10)
|
|
88
|
+
|
|
89
|
+
test_case.assertListEqual(list(test_row), list(true_value[i]))
|
|
90
|
+
else:
|
|
91
|
+
if isinstance(test_value[0], np.floating):
|
|
92
|
+
test_value = np.array(test_value).round(10)
|
|
93
|
+
true_value = np.array(true_value).round(10)
|
|
94
|
+
|
|
95
|
+
test_case.assertListEqual(list(test_value), list(true_value))
|
|
96
|
+
else:
|
|
97
|
+
test_case.assertEqual(test_value, true_value)
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: fiqus
|
|
3
|
-
Version: 2024.7.0
|
|
4
|
-
Summary: Source code for STEAM FiQuS tool
|
|
5
|
-
Home-page: https://gitlab.cern.ch/steam/fiqus
|
|
6
|
-
Author: STEAM Team
|
|
7
|
-
Author-email: steam-team@cern.ch
|
|
8
|
-
Keywords: STEAM,FiQuS,CERN
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
10
|
-
Requires-Python: >=3.11
|
|
11
|
-
Description-Content-Type: text/markdown
|
|
12
|
-
Requires-Dist: gmsh ==4.11.1
|
|
13
|
-
Requires-Dist: matplotlib ==3.8.3
|
|
14
|
-
Requires-Dist: Jinja2 ==3.1.3
|
|
15
|
-
Requires-Dist: numpy ==1.26.4
|
|
16
|
-
Requires-Dist: pandas ==2.2.1
|
|
17
|
-
Requires-Dist: pydantic ==2.6.4
|
|
18
|
-
Requires-Dist: ruamel.yaml ==0.18.6
|
|
19
|
-
Requires-Dist: scipy ==1.12.0
|
|
20
|
-
Requires-Dist: typing-extensions ==4.10.0
|
|
21
|
-
Provides-Extra: all
|
|
22
|
-
Requires-Dist: gmsh ==4.11.1 ; extra == 'all'
|
|
23
|
-
Requires-Dist: matplotlib ==3.8.3 ; extra == 'all'
|
|
24
|
-
Requires-Dist: Jinja2 ==3.1.3 ; extra == 'all'
|
|
25
|
-
Requires-Dist: numpy ==1.26.4 ; extra == 'all'
|
|
26
|
-
Requires-Dist: pandas ==2.2.1 ; extra == 'all'
|
|
27
|
-
Requires-Dist: pydantic ==2.6.4 ; extra == 'all'
|
|
28
|
-
Requires-Dist: ruamel.yaml ==0.18.6 ; extra == 'all'
|
|
29
|
-
Requires-Dist: scipy ==1.12.0 ; extra == 'all'
|
|
30
|
-
Requires-Dist: typing-extensions ==4.10.0 ; extra == 'all'
|
|
31
|
-
Requires-Dist: markdown ==3.3.7 ; extra == 'all'
|
|
32
|
-
Requires-Dist: markdown-include ==0.7.0 ; extra == 'all'
|
|
33
|
-
Requires-Dist: mkdocs ==1.3.1 ; extra == 'all'
|
|
34
|
-
Requires-Dist: mkdocs-material ==8.5.3 ; extra == 'all'
|
|
35
|
-
Requires-Dist: mkdocstrings-python ==0.7.1 ; extra == 'all'
|
|
36
|
-
Requires-Dist: mkdocs-include-markdown-plugin ==3.8.1 ; extra == 'all'
|
|
37
|
-
Requires-Dist: mkdocs-git-revision-date-localized-plugin ==1.1.0 ; extra == 'all'
|
|
38
|
-
Requires-Dist: griffe ==0.29.1 ; extra == 'all'
|
|
39
|
-
Requires-Dist: mypy ==0.971 ; extra == 'all'
|
|
40
|
-
Requires-Dist: pylint ==2.15.3 ; extra == 'all'
|
|
41
|
-
Requires-Dist: pytest ==7.1.3 ; extra == 'all'
|
|
42
|
-
Requires-Dist: pytest-cov ==3.0.0 ; extra == 'all'
|
|
43
|
-
Requires-Dist: coverage ==6.4.4 ; extra == 'all'
|
|
44
|
-
Requires-Dist: coverage-badge ==1.1.0 ; extra == 'all'
|
|
45
|
-
Requires-Dist: flake8 ==5.0.4 ; extra == 'all'
|
|
46
|
-
Requires-Dist: setuptools ==65.3.0 ; extra == 'all'
|
|
47
|
-
Provides-Extra: build
|
|
48
|
-
Requires-Dist: setuptools ==65.3.0 ; extra == 'build'
|
|
49
|
-
Provides-Extra: docs
|
|
50
|
-
Requires-Dist: markdown ==3.3.7 ; extra == 'docs'
|
|
51
|
-
Requires-Dist: markdown-include ==0.7.0 ; extra == 'docs'
|
|
52
|
-
Requires-Dist: mkdocs ==1.3.1 ; extra == 'docs'
|
|
53
|
-
Requires-Dist: mkdocs-material ==8.5.3 ; extra == 'docs'
|
|
54
|
-
Requires-Dist: mkdocstrings-python ==0.7.1 ; extra == 'docs'
|
|
55
|
-
Requires-Dist: mkdocs-include-markdown-plugin ==3.8.1 ; extra == 'docs'
|
|
56
|
-
Requires-Dist: mkdocs-git-revision-date-localized-plugin ==1.1.0 ; extra == 'docs'
|
|
57
|
-
Requires-Dist: griffe ==0.29.1 ; extra == 'docs'
|
|
58
|
-
Provides-Extra: tests
|
|
59
|
-
Requires-Dist: mypy ==0.971 ; extra == 'tests'
|
|
60
|
-
Requires-Dist: pylint ==2.15.3 ; extra == 'tests'
|
|
61
|
-
Requires-Dist: pytest ==7.1.3 ; extra == 'tests'
|
|
62
|
-
Requires-Dist: pytest-cov ==3.0.0 ; extra == 'tests'
|
|
63
|
-
Requires-Dist: coverage ==6.4.4 ; extra == 'tests'
|
|
64
|
-
Requires-Dist: coverage-badge ==1.1.0 ; extra == 'tests'
|
|
65
|
-
Requires-Dist: flake8 ==5.0.4 ; extra == 'tests'
|
|
66
|
-
|
|
67
|
-

|
|
68
|
-
|
|
69
|
-
# Introduction
|
|
70
|
-
Source code for STEAM **FiQuS** (**Fi**nite Element **Qu**ench **S**imulator).
|
|
71
|
-
|
|
72
|
-
# Publications
|
|
73
|
-
|
|
74
|
-
- S. Atalay et al, "An open-source 3D FE quench simulation tool for no-insulation HTS pancake coils", in Superconductor Science and Technology, doi: [10.1088/1361-6668/ad3f83](https://doi.org/10.1088/1361-6668/ad3f83)
|
|
75
|
-
- J. Dular et al, "Coupled Axial and Transverse Currents Method for Finite Element Modelling of Periodic Superconductors", arXiv preprint, doi:[10.48550/arXiv.2404.09775](https://doi.org/10.48550/arXiv.2404.09775).
|
|
76
|
-
- A. Vitrano et al, "An Open-Source Finite Element Quench Simulation Tool for Superconducting Magnets," in IEEE Transactions on Applied Superconductivity, vol. 33, no. 5, pp. 1-6, Aug. 2023, Art no. 4702006, doi: [10.1109/TASC.2023.3259332](https://ieeexplore.ieee.org/abstract/document/10077402).
|
|
77
|
-
- M. Wozniak et al, "Fast Quench Propagation Conductor for Protecting Canted Cos-Theta Magnets," in IEEE Transactions on Applied Superconductivity, vol. 33, no. 5, pp. 1-5, Aug. 2023, Art no. 4701705, doi: [10.1109/TASC.2023.3247997](https://ieeexplore.ieee.org/document/10050158).
|
|
78
|
-
|
|
79
|
-
# Folder Structure
|
|
80
|
-

|
|
81
|
-
|
|
82
|
-
# Installation
|
|
83
|
-
|
|
84
|
-
## Released version:
|
|
85
|
-
```pip install fiqus```
|
|
86
|
-
|
|
87
|
-
# Links
|
|
88
|
-
STEAM website: https://espace.cern.ch/steam/
|
|
89
|
-
|
|
90
|
-
STEAM-FiQuS website: https://espace.cern.ch/steam/SitePages/FiQuS.aspx
|
|
91
|
-
|
|
92
|
-
STEAM-FiQuS documentation: https://steam-fiqus.docs.cern.ch/
|
|
93
|
-
|
|
94
|
-
Coverage report: https://steam-fiqus.docs.cern.ch/htmlcov/
|
|
95
|
-
|
|
96
|
-
# Contact
|
|
97
|
-
steam-team@cern.ch
|
|
98
|
-
|
|
99
|
-
# STEAM User Agreement
|
|
100
|
-
By using any software of the STEAM framework, users agree with this document:
|
|
101
|
-
https://edms.cern.ch/document/2024516
|
|
102
|
-
|
|
103
|
-
(Copyright © 2022, CERN, Switzerland. All rights reserved.)
|
fiqus-2024.7.0.dist-info/RECORD
DELETED
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
fiqus/MainFiQuS.py,sha256=iLfsYTqQ93AVT4E1b81z-cx6LsdBJBXjOhMQkt-k4dM,14343
|
|
2
|
-
fiqus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
fiqus/data/DataConductor.py,sha256=iBtmUOfz68yPqTq_5-dprigb4BgP_BCbFzSMSKoqN_c,13919
|
|
4
|
-
fiqus/data/DataFiQuS.py,sha256=-lxp98aU3f-sHdbLYlBipBVr1w6zQi0kK7pWZQM3D5Y,6599
|
|
5
|
-
fiqus/data/DataFiQuSCCT.py,sha256=j3K9ODSwOuP-tkie0o4fvkouEyDHhlX3Y2DH1zO58Eo,7287
|
|
6
|
-
fiqus/data/DataFiQuSConductor.py,sha256=uxPR3cN38Kf93EN339JegM5GCg5wBtbfzCI-qeByMAQ,2710
|
|
7
|
-
fiqus/data/DataFiQuSConductorAC_Strand.py,sha256=dKfhrlQFQTRjwGc57hwZgir6YshO4bttQQyJRwi1EoE,28474
|
|
8
|
-
fiqus/data/DataFiQuSMultipole.py,sha256=cKa4JTzYUfUcbruoyALE1tgIDTy8zYhRFJuKZnnFuhc,2403
|
|
9
|
-
fiqus/data/DataFiQuSPancake3D.py,sha256=-xW4neYKIf9_10kRM1h9Vq1GQcrTQV1ABxiHw4ZT3tk,115543
|
|
10
|
-
fiqus/data/DataMultipole.py,sha256=Ai-z_Ux2iLxZPnHvCDneeUWxeOlfQEbVa74r_Il9ym0,2304
|
|
11
|
-
fiqus/data/DataRoxieParser.py,sha256=ysQfTnJ7nUHbjwgVWLtD_k0jggyEeNCXwRpm6ghVE8E,9036
|
|
12
|
-
fiqus/data/DataWindingsCCT.py,sha256=qqqxO4VG6rsKpNEImkA1hjrUMyS4UFNfVG_ioQd4ML8,1709
|
|
13
|
-
fiqus/data/RegionsModelFiQuS.py,sha256=cOFyZNZEgE1xdvUfAvCpzBKp0dhjUORhGd6b0d1kDLY,7242
|
|
14
|
-
fiqus/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
fiqus/geom_generators/GeometryCCT.py,sha256=Xp-lRlYeKX1ZkrbSbmzrGCq_dFgiC4XqW8qtCw3Xadk,49972
|
|
16
|
-
fiqus/geom_generators/GeometryConductorAC_Strand.py,sha256=GDMbPuYvE4Pwxy-qPlmTSurd1p92Nk6xDjgYZuXex2Q,76016
|
|
17
|
-
fiqus/geom_generators/GeometryMultipole.py,sha256=App1thx8KZ1kGwGaIxgRhJfIbG-VrjJZmwSv3s2P9w0,24171
|
|
18
|
-
fiqus/geom_generators/GeometryPancake3D.py,sha256=KefA9iK_pYeJKOZjfIYw8klYA1ToLXnfq6WiMwypPpk,167791
|
|
19
|
-
fiqus/geom_generators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
-
fiqus/getdp_runners/RunGetdpCCT.py,sha256=EPkckG8PPrBgACKG5oHSJrsBmBYvd9yJ8BvnaTeO3l4,3012
|
|
21
|
-
fiqus/getdp_runners/RunGetdpConductorAC_Strand.py,sha256=N_CZp2rua6TtJK__dv0WMHD2QlxGCigWGzRmz-EzDpU,10198
|
|
22
|
-
fiqus/getdp_runners/RunGetdpMultipole.py,sha256=6g5F1YBi0DzWWMBg0fVAIN0zbvgnIwY231NXShM_wK8,4224
|
|
23
|
-
fiqus/getdp_runners/RunGetdpPancake3D.py,sha256=9iBAKEeHOlpE9nWLf7bmpj2xMOMslBRq62ZnP-e1I7s,9744
|
|
24
|
-
fiqus/getdp_runners/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
-
fiqus/mains/MainCCT.py,sha256=egzRdGq-kCs-ZNIRGsBhmN7MCcF1Lp1n8r0XKBFImsA,4414
|
|
26
|
-
fiqus/mains/MainConductorAC_Strand.py,sha256=TEPft6rzq4wxOc3ljJj1AkLe9oiVccSyFiM4lrRziE0,5147
|
|
27
|
-
fiqus/mains/MainMultipole.py,sha256=2ntN2ACDIncQv-1yX5S6KlFG2nIK40-hpUxVnAogS-I,5075
|
|
28
|
-
fiqus/mains/MainPancake3D.py,sha256=nfyTW_Km39G5NqzgRpg5vjWUBpDyqIs54xkmNpyANe4,21524
|
|
29
|
-
fiqus/mains/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
-
fiqus/mesh_generators/MeshCCT.py,sha256=j2Qj69tdFb-weQnNgv5zi6dkL3ZJxGRdzKqzjlYdIy8,11436
|
|
31
|
-
fiqus/mesh_generators/MeshConductorAC_Strand.py,sha256=PjERjIQNRNej6eTLH8bSVA94VKcRtCOAfNQyCgwVWn8,43122
|
|
32
|
-
fiqus/mesh_generators/MeshMultipole.py,sha256=hyDKt_3K_jo8pvfoA8I3gAsU4vnlfX3pie5afMkOq-A,14508
|
|
33
|
-
fiqus/mesh_generators/MeshPancake3D.py,sha256=ClWH7sX00V6-LNptmWYY1nzeSyZCvGN_RKDnpdtsenc,120973
|
|
34
|
-
fiqus/mesh_generators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
-
fiqus/parsers/ParserDAT.py,sha256=eLbpr74BDoSw6UAeP_qkM55ZLRYPdk8t-RhTXU_oHE4,675
|
|
36
|
-
fiqus/parsers/ParserGetDPOnSection.py,sha256=pTk2EqO1sitoNIztekyEtIy5xpFKou_L3KGsIjJV3R0,8408
|
|
37
|
-
fiqus/parsers/ParserGetDPTimeTable.py,sha256=hAITcOQNJdG_bEUQoQ4VJEamc83BT8zCVp98jlhp1Ug,5098
|
|
38
|
-
fiqus/parsers/ParserMSH.py,sha256=ijLmPPsiy2azo9fN9iZ2aSc_MjueXwZG3GMqruYeucc,1912
|
|
39
|
-
fiqus/parsers/ParserPOS.py,sha256=hO4mLneIuSvX-Gaqeke27OLgnCfzNvg4E_9r6nFr6Wg,10121
|
|
40
|
-
fiqus/parsers/ParserRES.py,sha256=782GouJaw0j5u1RLGag6FauSUTuKV7gKa1G4EowSKBE,5984
|
|
41
|
-
fiqus/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
-
fiqus/plotters/PlotPythonCCT.py,sha256=YgphOuiTk0klqZh4d4u81hahtiDp-tx149EpBjyKH-Y,6333
|
|
43
|
-
fiqus/plotters/PlotPythonConductorAC.py,sha256=Vk4_Cdq7coL1moJWGYxHn9eGDfDdXL1la90x0-Inzus,46320
|
|
44
|
-
fiqus/plotters/PlotPythonMultipole.py,sha256=SjJQKHX5mUoMW3yli97W6Kja0Hux8C16YE1U22hQRHY,481
|
|
45
|
-
fiqus/plotters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
|
-
fiqus/post_processors/PostProcessCCT.py,sha256=-lao2mxHRJNuLSqP2pdiXAIvLxdAw0e5NNEbTfhDQs0,28443
|
|
47
|
-
fiqus/post_processors/PostProcessConductorAC.py,sha256=77E9nUOZUktgX8J_g03ASVyoZIKeZPcCl1y9s-CEs2Y,2184
|
|
48
|
-
fiqus/post_processors/PostProcessMultipole.py,sha256=Jm4mbe8HUHHMbFT51PLXYM7We0Siltuw4ZclJ1A5Vus,15649
|
|
49
|
-
fiqus/post_processors/PostProcessPancake3D.py,sha256=owXLKxAZ-tZw6oW0RemjH8HJTnINZuZnAgY0x-WLVgU,13195
|
|
50
|
-
fiqus/post_processors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
-
fiqus/pre_processors/PreProcessCCT.py,sha256=BDRei7uLdOHxNnsg-r17HcjtvvrST8HUj_lQ1GSmVZo,9217
|
|
52
|
-
fiqus/pre_processors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
|
-
fiqus/pro_assemblers/ProAssembler.py,sha256=LyGpydWUJmw9hKpWsI72qyoG8y4Su2hKn3adykISMWc,2906
|
|
54
|
-
fiqus/pro_assemblers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
-
fiqus/pro_material_functions/ironBHcurves.pro,sha256=0Tz1KzZ63G_zaS6dYQ5NYwa9EAtJna0jR61OxsM9J_E,17835
|
|
56
|
-
fiqus/pro_templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
-
fiqus/pro_templates/combined/CCT_template.pro,sha256=8dyBKotys4kr7FyUZJFZr0CMBjEupPJ3XIPPOQwJ2Ps,13832
|
|
58
|
-
fiqus/pro_templates/combined/ConductorAC_template.pro,sha256=ocZgeGgqj49DYDbX9QUFtag9-i3dWsL2_MYkJgNN6BA,61725
|
|
59
|
-
fiqus/pro_templates/combined/Multipole_template.pro,sha256=Tuheajy32uZFyTe-OsvCyIRsDiOyYm0yoOe4LxfcSi8,8060
|
|
60
|
-
fiqus/pro_templates/combined/Pancake3D_template.pro,sha256=i0lr2hROYJVRff0S7PgJNfxxG0EHy_HrPCEbYftaKjs,150118
|
|
61
|
-
fiqus/pro_templates/combined/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
-
fiqus/pro_templates/combined/materials.pro,sha256=TMqOu93KqSn0FWy6As6oTLqYChXXz-pGq6AVhweLpg8,5709
|
|
63
|
-
fiqus/pro_templates/separated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
-
fiqus/utils/Utils.py,sha256=di-IYXD36cArEvkki8XbStXkpmmFL8EPOjMBAsNrT7I,18489
|
|
65
|
-
fiqus/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
|
-
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
|
-
tests/test_FiQuS.py,sha256=KN8qkXuUrkHg82rB_wsUEq_diP5mPOQpOpA0WBHMwpo,15537
|
|
68
|
-
tests/test_geometry_generators.py,sha256=GtoykfajdGMO5GQHWjFLNbaCHCKQLFOzfsiHhfJja0Q,3908
|
|
69
|
-
tests/test_mesh_generators.py,sha256=Ea0lZmTn0MeryrdQoZ1HUNpYmEFjourvH5eGK6T6szI,3988
|
|
70
|
-
tests/test_solvers.py,sha256=nJXLELUZWAiLRqVkpD2FtYXhuStKRHYvuGkztiI1AUc,6407
|
|
71
|
-
tests/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
|
-
tests/utils/fiqus_test_classes.py,sha256=Il8T-Bz1WNJhOrTBFHNoRRr_QXQzzprZu9Y8SXRbLJ0,26948
|
|
73
|
-
tests/utils/generate_reference_files_ConductorAC.py,sha256=_jEE6xcqiz52bnmY6Is11QmG-bZ2vdH0k99p733t4N4,1676
|
|
74
|
-
tests/utils/generate_reference_files_Pancake3D.py,sha256=ufELeL8WMoWZFcOkVxR7w5OHCgIQ4Z3cLcXM-LtgvmM,3314
|
|
75
|
-
tests/utils/helpers.py,sha256=BQxdHr8N4rGXc2C_YNEeOXxTIDJSUeRyyxLkvWfhiJY,4149
|
|
76
|
-
fiqus-2024.7.0.dist-info/METADATA,sha256=n5SENlrvP0jQQaWKzwYqS5WXRPzFziT8CxzCP8t-9cY,4914
|
|
77
|
-
fiqus-2024.7.0.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
78
|
-
fiqus-2024.7.0.dist-info/top_level.txt,sha256=oGzSIyoVc1zYg14o67zI3QFwWsJvqNzNT0-te9WbUQc,12
|
|
79
|
-
fiqus-2024.7.0.dist-info/RECORD,,
|
|
File without changes
|