fiqus 2026.1.0__tar.gz → 2026.1.1__tar.gz

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.
Files changed (117) hide show
  1. {fiqus-2026.1.0 → fiqus-2026.1.1}/PKG-INFO +59 -51
  2. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/MainFiQuS.py +1 -8
  3. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/DataConductor.py +4 -8
  4. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/DataFiQuSMultipole.py +363 -165
  5. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/DataModelCommon.py +30 -15
  6. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/DataMultipole.py +33 -10
  7. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/DataWindingsCCT.py +37 -37
  8. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/RegionsModelFiQuS.py +1 -1
  9. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/geom_generators/GeometryMultipole.py +751 -54
  10. fiqus-2026.1.1/fiqus/getdp_runners/RunGetdpMultipole.py +320 -0
  11. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mains/MainMultipole.py +109 -17
  12. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mesh_generators/MeshCCT.py +209 -209
  13. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mesh_generators/MeshMultipole.py +938 -263
  14. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/parsers/ParserCOND.py +2 -1
  15. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/parsers/ParserDAT.py +16 -16
  16. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/parsers/ParserGetDPOnSection.py +212 -212
  17. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/parsers/ParserGetDPTimeTable.py +134 -134
  18. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/parsers/ParserMSH.py +53 -53
  19. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/parsers/ParserRES.py +142 -142
  20. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/plotters/PlotPythonCCT.py +133 -133
  21. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/plotters/PlotPythonMultipole.py +18 -18
  22. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/post_processors/PostProcessMultipole.py +16 -6
  23. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/pre_processors/PreProcessCCT.py +175 -175
  24. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/pro_assemblers/ProAssembler.py +3 -3
  25. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/pro_material_functions/ironBHcurves.pro +246 -246
  26. fiqus-2026.1.1/fiqus/pro_templates/combined/CC_Module.pro +1213 -0
  27. fiqus-2026.1.1/fiqus/pro_templates/combined/Multipole_template.pro +3216 -0
  28. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/pro_templates/combined/TSA_materials.pro +102 -2
  29. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/pro_templates/combined/materials.pro +54 -3
  30. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/utils/Utils.py +18 -25
  31. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/utils/update_data_settings.py +1 -1
  32. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus.egg-info/PKG-INFO +59 -51
  33. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus.egg-info/SOURCES.txt +1 -0
  34. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus.egg-info/requires.txt +22 -26
  35. {fiqus-2026.1.0 → fiqus-2026.1.1}/setup.py +26 -17
  36. {fiqus-2026.1.0 → fiqus-2026.1.1}/tests/test_geometry_generators.py +29 -32
  37. {fiqus-2026.1.0 → fiqus-2026.1.1}/tests/test_mesh_generators.py +35 -34
  38. {fiqus-2026.1.0 → fiqus-2026.1.1}/tests/test_solvers.py +32 -31
  39. {fiqus-2026.1.0 → fiqus-2026.1.1}/tests/utils/fiqus_test_classes.py +396 -147
  40. {fiqus-2026.1.0 → fiqus-2026.1.1}/tests/utils/generate_reference_files_ConductorAC.py +57 -57
  41. {fiqus-2026.1.0 → fiqus-2026.1.1}/tests/utils/helpers.py +76 -1
  42. fiqus-2026.1.0/fiqus/getdp_runners/RunGetdpMultipole.py +0 -170
  43. fiqus-2026.1.0/fiqus/pro_templates/combined/Multipole_template.pro +0 -1816
  44. {fiqus-2026.1.0 → fiqus-2026.1.1}/LICENSE.txt +0 -0
  45. {fiqus-2026.1.0 → fiqus-2026.1.1}/README.md +0 -0
  46. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/__init__.py +0 -0
  47. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/DataFiQuS.py +0 -0
  48. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/DataFiQuSCCT.py +0 -0
  49. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/DataFiQuSConductor.py +0 -0
  50. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/DataFiQuSConductorAC_CC.py +0 -0
  51. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/DataFiQuSConductorAC_Rutherford.py +0 -0
  52. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/DataFiQuSConductorAC_Strand.py +0 -0
  53. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/DataFiQuSHomogenizedConductor.py +0 -0
  54. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/DataFiQuSPancake3D.py +0 -0
  55. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/DataRoxieParser.py +0 -0
  56. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/DataSettings.py +0 -0
  57. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/data/__init__.py +0 -0
  58. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/geom_generators/GeometryCCT.py +0 -0
  59. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/geom_generators/GeometryConductorAC_CC.py +0 -0
  60. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/geom_generators/GeometryConductorAC_Rutherford.py +0 -0
  61. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/geom_generators/GeometryConductorAC_Strand.py +0 -0
  62. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/geom_generators/GeometryConductorAC_Strand_RutherfordCopy.py +0 -0
  63. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/geom_generators/GeometryHomogenizedConductor.py +0 -0
  64. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/geom_generators/GeometryPancake3D.py +0 -0
  65. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/geom_generators/GeometryPancake3DUtils.py +0 -0
  66. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/geom_generators/__init__.py +0 -0
  67. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/getdp_runners/RunGetdpCCT.py +0 -0
  68. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/getdp_runners/RunGetdpConductorAC_CC.py +0 -0
  69. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/getdp_runners/RunGetdpConductorAC_Rutherford.py +0 -0
  70. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/getdp_runners/RunGetdpConductorAC_Strand.py +0 -0
  71. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/getdp_runners/RunGetdpHomogenizedConductor.py +0 -0
  72. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/getdp_runners/RunGetdpPancake3D.py +0 -0
  73. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/getdp_runners/__init__.py +0 -0
  74. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mains/MainCCT.py +0 -0
  75. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mains/MainConductorAC_CC.py +0 -0
  76. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mains/MainConductorAC_Rutherford.py +0 -0
  77. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mains/MainConductorAC_Strand.py +0 -0
  78. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mains/MainHomogenizedConductor.py +0 -0
  79. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mains/MainPancake3D.py +0 -0
  80. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mains/__init__.py +0 -0
  81. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mesh_generators/MeshConductorAC_CC.py +0 -0
  82. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mesh_generators/MeshConductorAC_Rutherford.py +0 -0
  83. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mesh_generators/MeshConductorAC_Strand.py +0 -0
  84. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mesh_generators/MeshConductorAC_Strand_RutherfordCopy.py +0 -0
  85. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mesh_generators/MeshHomogenizedConductor.py +0 -0
  86. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mesh_generators/MeshPancake3D.py +0 -0
  87. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/mesh_generators/__init__.py +0 -0
  88. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/parsers/ParserPOS.py +0 -0
  89. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/parsers/__init__.py +0 -0
  90. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/plotters/PlotPythonConductorAC.py +0 -0
  91. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/plotters/__init__.py +0 -0
  92. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/post_processors/PostProcessAC_CC.py +0 -0
  93. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/post_processors/PostProcessAC_Rutherford.py +0 -0
  94. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/post_processors/PostProcessCCT.py +0 -0
  95. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/post_processors/PostProcessConductorAC.py +0 -0
  96. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/post_processors/PostProcessHomogenizedConductor.py +0 -0
  97. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/post_processors/PostProcessPancake3D.py +0 -0
  98. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/post_processors/__init__.py +0 -0
  99. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/pre_processors/__init__.py +0 -0
  100. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/pro_assemblers/__init__.py +0 -0
  101. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/pro_templates/__init__.py +0 -0
  102. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/pro_templates/combined/CAC_CC_template.pro +0 -0
  103. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/pro_templates/combined/CAC_Rutherford_template.pro +0 -0
  104. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/pro_templates/combined/CAC_Strand_template.pro +0 -0
  105. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/pro_templates/combined/CCT_template.pro +0 -0
  106. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/pro_templates/combined/HomogenizedConductor_template.pro +0 -0
  107. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/pro_templates/combined/Pancake3D_template.pro +0 -0
  108. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/pro_templates/combined/__init__.py +0 -0
  109. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/pro_templates/separated/__init__.py +0 -0
  110. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus/utils/__init__.py +0 -0
  111. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus.egg-info/dependency_links.txt +0 -0
  112. {fiqus-2026.1.0 → fiqus-2026.1.1}/fiqus.egg-info/top_level.txt +0 -0
  113. {fiqus-2026.1.0 → fiqus-2026.1.1}/setup.cfg +0 -0
  114. {fiqus-2026.1.0 → fiqus-2026.1.1}/tests/__init__.py +0 -0
  115. {fiqus-2026.1.0 → fiqus-2026.1.1}/tests/test_FiQuS.py +0 -0
  116. {fiqus-2026.1.0 → fiqus-2026.1.1}/tests/utils/__init__.py +0 -0
  117. {fiqus-2026.1.0 → fiqus-2026.1.1}/tests/utils/generate_reference_files_Pancake3D.py +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: fiqus
3
- Version: 2026.1.0
3
+ Version: 2026.1.1
4
4
  Summary: Source code for STEAM FiQuS tool
5
5
  Home-page: https://gitlab.cern.ch/steam/fiqus
6
6
  Author: STEAM Team
@@ -10,52 +10,17 @@ Classifier: Programming Language :: Python :: 3.11
10
10
  Requires-Python: >=3.11
11
11
  Description-Content-Type: text/markdown
12
12
  License-File: LICENSE.txt
13
- Requires-Dist: gmsh==4.13.1
14
- Requires-Dist: h5py==3.10.0
15
- Requires-Dist: Jinja2==3.1.3
16
- Requires-Dist: matplotlib==3.8.3
17
- Requires-Dist: mplcursors==0.5.3
18
- Requires-Dist: numpy==1.26.4
19
- Requires-Dist: pandas==2.2.1
20
- Requires-Dist: pydantic==2.6.4
21
- Requires-Dist: ruamel.yaml==0.18.6
22
- Requires-Dist: ruamel.yaml.clib==0.2.8
23
- Requires-Dist: scipy==1.14.1
24
- Requires-Dist: tqdm==4.66.2
25
- Requires-Dist: typing_extensions==4.10.0
26
- Provides-Extra: all
27
- Requires-Dist: gmsh==4.13.1; extra == "all"
28
- Requires-Dist: h5py==3.10.0; extra == "all"
29
- Requires-Dist: Jinja2==3.1.3; extra == "all"
30
- Requires-Dist: matplotlib==3.8.3; extra == "all"
31
- Requires-Dist: mplcursors==0.5.3; extra == "all"
32
- Requires-Dist: numpy==1.26.4; extra == "all"
33
- Requires-Dist: pandas==2.2.1; extra == "all"
34
- Requires-Dist: pydantic==2.6.4; extra == "all"
35
- Requires-Dist: ruamel.yaml==0.18.6; extra == "all"
36
- Requires-Dist: ruamel.yaml.clib==0.2.8; extra == "all"
37
- Requires-Dist: scipy==1.14.1; extra == "all"
38
- Requires-Dist: tqdm==4.66.2; extra == "all"
39
- Requires-Dist: typing_extensions==4.10.0; extra == "all"
40
- Requires-Dist: griffe==0.42.0; extra == "all"
41
- Requires-Dist: markdown==3.5.2; extra == "all"
42
- Requires-Dist: markdown-include==0.8.1; extra == "all"
43
- Requires-Dist: mkdocs-git-revision-date-localized-plugin==1.2.4; extra == "all"
44
- Requires-Dist: mkdocs-include-markdown-plugin==6.0.4; extra == "all"
45
- Requires-Dist: mkdocs-material==9.5.13; extra == "all"
46
- Requires-Dist: mkdocstrings-python==1.9.0; extra == "all"
47
- Requires-Dist: mkdocs-autorefs==1.3.1; extra == "all"
48
- Requires-Dist: coverage==7.4.4; extra == "all"
49
- Requires-Dist: coverage-badge==1.1.0; extra == "all"
50
- Requires-Dist: flake8==7.0.0; extra == "all"
51
- Requires-Dist: mypy==1.9.0; extra == "all"
52
- Requires-Dist: pylint==3.1.0; extra == "all"
53
- Requires-Dist: pytest==8.1.1; extra == "all"
54
- Requires-Dist: pytest-cov==4.1.0; extra == "all"
55
- Requires-Dist: pytest-subtests==0.12.1; extra == "all"
56
- Requires-Dist: setuptools==69.2.0; extra == "all"
57
- Requires-Dist: wheel==0.45.1; extra == "all"
58
- Requires-Dist: twine==6.0.1; extra == "all"
13
+ Requires-Dist: gmsh<5,>=4.13
14
+ Requires-Dist: h5py<4,>=3.10
15
+ Requires-Dist: Jinja2<4,>=3.1
16
+ Requires-Dist: matplotlib<4,>=3.8
17
+ Requires-Dist: mplcursors<1,>=0.5
18
+ Requires-Dist: numpy<2,>=1.26
19
+ Requires-Dist: pandas<3,>=2.2
20
+ Requires-Dist: pydantic<3,>=2.6
21
+ Requires-Dist: ruamel.yaml<1,>=0.18
22
+ Requires-Dist: scipy<2,>=1.14
23
+ Requires-Dist: tqdm<5,>=4.66
59
24
  Provides-Extra: docs
60
25
  Requires-Dist: griffe==0.42.0; extra == "docs"
61
26
  Requires-Dist: markdown==3.5.2; extra == "docs"
@@ -78,6 +43,49 @@ Provides-Extra: build
78
43
  Requires-Dist: setuptools==69.2.0; extra == "build"
79
44
  Requires-Dist: wheel==0.45.1; extra == "build"
80
45
  Requires-Dist: twine==6.0.1; extra == "build"
46
+ Provides-Extra: all
47
+ Requires-Dist: gmsh<5,>=4.13; extra == "all"
48
+ Requires-Dist: h5py<4,>=3.10; extra == "all"
49
+ Requires-Dist: Jinja2<4,>=3.1; extra == "all"
50
+ Requires-Dist: matplotlib<4,>=3.8; extra == "all"
51
+ Requires-Dist: mplcursors<1,>=0.5; extra == "all"
52
+ Requires-Dist: numpy<2,>=1.26; extra == "all"
53
+ Requires-Dist: pandas<3,>=2.2; extra == "all"
54
+ Requires-Dist: pydantic<3,>=2.6; extra == "all"
55
+ Requires-Dist: ruamel.yaml<1,>=0.18; extra == "all"
56
+ Requires-Dist: scipy<2,>=1.14; extra == "all"
57
+ Requires-Dist: tqdm<5,>=4.66; extra == "all"
58
+ Requires-Dist: griffe==0.42.0; extra == "all"
59
+ Requires-Dist: markdown==3.5.2; extra == "all"
60
+ Requires-Dist: markdown-include==0.8.1; extra == "all"
61
+ Requires-Dist: mkdocs-git-revision-date-localized-plugin==1.2.4; extra == "all"
62
+ Requires-Dist: mkdocs-include-markdown-plugin==6.0.4; extra == "all"
63
+ Requires-Dist: mkdocs-material==9.5.13; extra == "all"
64
+ Requires-Dist: mkdocstrings-python==1.9.0; extra == "all"
65
+ Requires-Dist: mkdocs-autorefs==1.3.1; extra == "all"
66
+ Requires-Dist: coverage==7.4.4; extra == "all"
67
+ Requires-Dist: coverage-badge==1.1.0; extra == "all"
68
+ Requires-Dist: flake8==7.0.0; extra == "all"
69
+ Requires-Dist: mypy==1.9.0; extra == "all"
70
+ Requires-Dist: pylint==3.1.0; extra == "all"
71
+ Requires-Dist: pytest==8.1.1; extra == "all"
72
+ Requires-Dist: pytest-cov==4.1.0; extra == "all"
73
+ Requires-Dist: pytest-subtests==0.12.1; extra == "all"
74
+ Requires-Dist: setuptools==69.2.0; extra == "all"
75
+ Requires-Dist: wheel==0.45.1; extra == "all"
76
+ Requires-Dist: twine==6.0.1; extra == "all"
77
+ Dynamic: author
78
+ Dynamic: author-email
79
+ Dynamic: classifier
80
+ Dynamic: description
81
+ Dynamic: description-content-type
82
+ Dynamic: home-page
83
+ Dynamic: keywords
84
+ Dynamic: license-file
85
+ Dynamic: provides-extra
86
+ Dynamic: requires-dist
87
+ Dynamic: requires-python
88
+ Dynamic: summary
81
89
 
82
90
  ![FiQuS logo](https://gitlab.cern.ch/steam/fiqus/-/raw/master/docs/images/FiQuS_name_logo.svg)
83
91
 
@@ -96,7 +104,7 @@ Source code for STEAM **FiQuS** (**Fi**nite Element **Qu**ench **S**imulator).
96
104
 
97
105
  ## Using FiQuS
98
106
  - M. Wozniak et al, "Influence of Critical Current Distribution on Operation, Quench Detection and Protection of HTS Pancake Coils, in IEEE Transactions on Applied Superconductivity, [10.1109/TASC.2025.3532246](https://doi.org/10.1109/TASC.2025.3532246).
99
- - Laura AM D’Angelo et al, "Efficient Reduced Magnetic Vector Potential Formulation for the Magnetic Field Simulation of Accelerator Magnets", in IEEE Transactions on Magnetics, vol. 60, no. 3, pp. 1-8, Jan. 2024, Art no. 7000808, doi: [10.1109/TMAG.2024.3352113](https://ieeexplore.ieee.org/abstract/document/10387412).
107
+ - Laura AM DAngelo et al, "Efficient Reduced Magnetic Vector Potential Formulation for the Magnetic Field Simulation of Accelerator Magnets", in IEEE Transactions on Magnetics, vol. 60, no. 3, pp. 1-8, Jan. 2024, Art no. 7000808, doi: [10.1109/TMAG.2024.3352113](https://ieeexplore.ieee.org/abstract/document/10387412).
100
108
  - M. Wozniak et al, "Quench Co-Simulation of Canted Cos-Theta Magnets," in IEEE Transactions on Applied Superconductivity, vol. 34, no. 3, pp. 1-5, Dec. 2023, Art no. 4900105, doi: [10.1109/TASC.2023.3338142](https://ieeexplore.ieee.org/document/10337614).
101
109
  - 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).
102
110
  - E. Schnaubelt et al, "Parallel-in-Time Integration of Transient Phenomena in No-Insulation Superconducting Coils Using Parareal", accepted for publication in the proceedings of the
@@ -104,7 +112,7 @@ Scientific Computing in Electrical Engineering (SCEE) 2024 conference, [arXiv:24
104
112
 
105
113
  ## Mathematical Formulations Forming the Basis of Some FiQuS Modules
106
114
  - E. Schnaubelt et al, "Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils", in IEEE Transactions on Applied Superconductivity, vol. 34, no. 3, pp. 1-6, Dec. 2023, Art no. 4700406, doi: [10.1109/TASC.2023.3340648](https://ieeexplore.ieee.org/document/10349801).
107
- - E. Schnaubelt et al, "Electromagnetic Simulation of No-Insulation Coils Using H−φ Thin Shell Approximation", in IEEE Transactions on Applied Superconductivity, vol. 33, no. 5, pp. 1-6, Mar. 2023, Art no. 4900906, doi: [10.1109/TASC.2023.3258905](https://ieeexplore.ieee.org/document/10076826).
115
+ - E. Schnaubelt et al, "Electromagnetic Simulation of No-Insulation Coils Using H−φ Thin Shell Approximation", in IEEE Transactions on Applied Superconductivity, vol. 33, no. 5, pp. 1-6, Mar. 2023, Art no. 4900906, doi: [10.1109/TASC.2023.3258905](https://ieeexplore.ieee.org/document/10076826).
108
116
  - E. Schnaubelt et al, "Thermal thin shell approximation towards finite element quench simulation", in Superconductor Science and Technology, vol. 36, no. 4, Art no. 044004, doi: [10.1088/1361-6668/acbeea](https://iopscience.iop.org/article/10.1088/1361-6668/acbeea).
109
117
  - J. Dular et al, "Reduced order hysteretic magnetization model for composite superconductors", in Superconductor Science and Technology, vol. 38, no. 3, Art no. 035017, doi: [10.1088/1361-6668/adb5cc](https://iopscience.iop.org/article/10.1088/1361-6668/adb5cc/meta).
110
118
  - J. Dular et al, "A Finite Element a-h-Formulation for the Reduced Order Hysteretic Magnetization Model for Composite Superconductors", in IEEE Transactions on Applied Superconductivity, vol. 35, no. 5, Art no. 8200205, doi: [10.1109/TASC.2025.3528310](https://ieeexplore.ieee.org/abstract/document/10839043).
@@ -133,4 +141,4 @@ steam-admins@cern.ch
133
141
  # License
134
142
  This project is licensed under the GNU General Public License v3.0. See the LICENSE file for details.
135
143
 
136
- (Copyright © 2022, CERN, Switzerland. All rights reserved.)
144
+ (Copyright © 2022, CERN, Switzerland. All rights reserved.)
@@ -103,12 +103,7 @@ class MainFiQuS:
103
103
  self.file_name = os.path.basename(input_file_path)[:-5]
104
104
  if not self.fdm.magnet.geometry.geom_file_path:
105
105
  self.fdm.magnet.geometry.geom_file_path = f"{input_file_path[:-5]}.geom"
106
- self.main_magnet = MainMultipole(
107
- fdm=self.fdm,
108
- rgd_path=self.fdm.magnet.geometry.geom_file_path,
109
- verbose=verbose,
110
- )
111
-
106
+ self.main_magnet = MainMultipole(fdm=self.fdm,rgd_path=self.fdm.magnet.geometry.geom_file_path,verbose=verbose, inputs_folder_path=pathlib.Path(input_file_path).parent)
112
107
  else:
113
108
  raise ValueError(
114
109
  f"FiQuS does not support magnet type: {self.fdm.magnet.type}!"
@@ -397,8 +392,6 @@ class MainFiQuS:
397
392
  self.summary["solution_time"] = (
398
393
  self.main_magnet.solve_and_postprocess_getdp(gui=self.main_magnet.fdm.run.launch_gui)
399
394
  )
400
- elif self.fdm.run.type == "postprocess_veusz":
401
- self.main_magnet.post_process_veusz(gui=self.main_magnet.fdm.run.launch_gui)
402
395
  elif self.fdm.run.type == "post_process_getdp_only":
403
396
  self.main_magnet.post_process_getdp(gui=self.main_magnet.fdm.run.launch_gui)
404
397
  elif self.fdm.run.type == "post_process_python_only":
@@ -321,7 +321,7 @@ class Round(BaseModel):
321
321
  k_material_superconductor: Optional[Union[str, float]] = Field(default=None, description="Thermal conductivity of the superconductor.")
322
322
  Cv_material_superconductor: Optional[Union[str, float]] = Field(default=None, description="Material function for specific heat of the superconductor.")
323
323
  # -- Stabilizer parameters -- #
324
- material_stabilizer: Optional[str] = Field(default=None, description="Material of the stabilizer.")
324
+ #material_stabilizer: Optional[str] = Field(default=None, description="Material of the stabilizer.")
325
325
  rho_material_stabilizer: Optional[Union[str, float]] = Field(default=None, description="Material function for resistivity of the stabilizer. Constant resistivity can be given as float.")
326
326
  rho_material_holes: Optional[Union[str, float]] = Field(default=None, description="Material function for resistivity of the holes in the filaments."
327
327
  "Constant resistivity can be given as float, material name as a string or None or 0.0 to use 'air' in the holes.")
@@ -362,18 +362,14 @@ class Rectangular(BaseModel):
362
362
  k_material_superconductor: Optional[Union[str, float]] = Field(default=None, description="Thermal conductivity of the superconductor.")
363
363
  Cv_material_superconductor: Optional[Union[str, float]] = Field(default=None, description="Material function for specific heat of the superconductor.")
364
364
  # -- Stabilizer parameters -- #
365
- material_stabilizer: Optional[str] = Field(default=None, description="Material of the stabilizer.")
365
+ #material_stabilizer: Optional[str] = Field(default=None, description="Material of the stabilizer.") #TODO this should be removed as is substituted by rho, k and Cv
366
+ k_material_stabilizer: Optional[Union[str, float]] = Field(default=None, description="Thermal conductivity of the stabilizer.")
367
+ Cv_material_stabilizer: Optional[Union[str, float]] = Field(default=None, description="Material function for specific heat of the stabilizer.")
366
368
  rho_material_stabilizer: Optional[Union[str, float]] = Field(default=None, description="Material function for resistivity of the stabilizer. Constant resistivity can be given as float.")
367
369
  RRR: Optional[Union[float, List[float]]] = Field(default=None, description="Residual resistivity ratio of the stabilizer. If a list of RRR is provided it needs to match in length the number of matrix regions in the geometry (typically 3)")
368
370
  T_ref_RRR_high: Optional[float] = Field(default=None, description="Upper reference temperature for RRR measurements.")
369
371
  T_ref_RRR_low: Optional[float] = Field(default=None, description="Lower reference temperature for RRR measurements.")
370
- k_material_stabilizer: Optional[Union[str, float]] = Field(default=None, description="Thermal conductivity of the stabilizer.")
371
- Cv_material_stabilizer: Optional[Union[str, float]] = Field(default=None, description="Material function for specific heat of the stabilizer.")
372
- number_of_filaments: Optional[int] = None
373
372
 
374
- # superconductor: MaterialSuperconductor = MaterialSuperconductor()
375
- # stabilizer: MaterialStabilizer = MaterialStabilizer()
376
-
377
373
  class Copper_thickness(BaseModel):
378
374
  left: Optional[float] = Field(default=None, description="On the left side.")
379
375
  right: Optional[float] = Field(default=None, description="On the right side.")