fiqus 2025.2.0__py3-none-any.whl → 2025.10.0__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.
Files changed (54) hide show
  1. fiqus/MainFiQuS.py +4 -9
  2. fiqus/data/DataConductor.py +350 -301
  3. fiqus/data/DataFiQuS.py +42 -115
  4. fiqus/data/DataFiQuSCCT.py +150 -150
  5. fiqus/data/DataFiQuSConductor.py +97 -84
  6. fiqus/data/DataFiQuSConductorAC_Strand.py +701 -565
  7. fiqus/data/DataModelCommon.py +439 -0
  8. fiqus/data/DataMultipole.py +0 -13
  9. fiqus/data/DataRoxieParser.py +7 -0
  10. fiqus/data/DataWindingsCCT.py +37 -37
  11. fiqus/data/RegionsModelFiQuS.py +61 -104
  12. fiqus/geom_generators/GeometryCCT.py +904 -905
  13. fiqus/geom_generators/GeometryConductorAC_Strand.py +1863 -1391
  14. fiqus/geom_generators/GeometryMultipole.py +5 -4
  15. fiqus/geom_generators/GeometryPancake3D.py +1 -1
  16. fiqus/getdp_runners/RunGetdpCCT.py +13 -4
  17. fiqus/getdp_runners/RunGetdpConductorAC_Strand.py +341 -201
  18. fiqus/getdp_runners/RunGetdpPancake3D.py +2 -2
  19. fiqus/mains/MainConductorAC_Strand.py +141 -133
  20. fiqus/mains/MainMultipole.py +6 -5
  21. fiqus/mains/MainPancake3D.py +3 -4
  22. fiqus/mesh_generators/MeshCCT.py +209 -209
  23. fiqus/mesh_generators/MeshConductorAC_Strand.py +709 -656
  24. fiqus/mesh_generators/MeshMultipole.py +43 -46
  25. fiqus/parsers/ParserDAT.py +16 -16
  26. fiqus/parsers/ParserGetDPOnSection.py +212 -212
  27. fiqus/parsers/ParserGetDPTimeTable.py +134 -134
  28. fiqus/parsers/ParserMSH.py +53 -53
  29. fiqus/parsers/ParserPOS.py +214 -214
  30. fiqus/parsers/ParserRES.py +142 -142
  31. fiqus/plotters/PlotPythonCCT.py +133 -133
  32. fiqus/plotters/PlotPythonConductorAC.py +1079 -855
  33. fiqus/plotters/PlotPythonMultipole.py +18 -18
  34. fiqus/post_processors/PostProcessCCT.py +444 -440
  35. fiqus/post_processors/PostProcessConductorAC.py +997 -49
  36. fiqus/post_processors/PostProcessMultipole.py +19 -19
  37. fiqus/pre_processors/PreProcessCCT.py +175 -175
  38. fiqus/pro_material_functions/ironBHcurves.pro +246 -246
  39. fiqus/pro_templates/combined/CCT_template.pro +275 -274
  40. fiqus/pro_templates/combined/ConductorAC_template.pro +1474 -1025
  41. fiqus/pro_templates/combined/Multipole_template.pro +5 -5
  42. fiqus/utils/Utils.py +12 -7
  43. {fiqus-2025.2.0.dist-info → fiqus-2025.10.0.dist-info}/METADATA +65 -63
  44. fiqus-2025.10.0.dist-info/RECORD +86 -0
  45. {fiqus-2025.2.0.dist-info → fiqus-2025.10.0.dist-info}/WHEEL +1 -1
  46. tests/test_geometry_generators.py +4 -0
  47. tests/test_mesh_generators.py +5 -0
  48. tests/test_solvers.py +41 -4
  49. tests/utils/fiqus_test_classes.py +15 -6
  50. tests/utils/generate_reference_files_ConductorAC.py +57 -57
  51. tests/utils/helpers.py +97 -97
  52. fiqus-2025.2.0.dist-info/RECORD +0 -85
  53. {fiqus-2025.2.0.dist-info → fiqus-2025.10.0.dist-info}/LICENSE.txt +0 -0
  54. {fiqus-2025.2.0.dist-info → fiqus-2025.10.0.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,85 +0,0 @@
1
- fiqus/MainFiQuS.py,sha256=k1dPUJMXQs-OHc_CbwuyCH1qMxV_7LnRpy5RKbMlRm8,22011
2
- fiqus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- fiqus/data/DataConductor.py,sha256=wthDctDDa81GO9TNTHwTTuQ9WK8fmyDmwqeEja8gFFM,13618
4
- fiqus/data/DataFiQuS.py,sha256=8gT8xGA_kUrOiuAyUbSSc08ECK8tIcBlmVvGF-zWCH4,7808
5
- fiqus/data/DataFiQuSCCT.py,sha256=pXBYgeuAb10H46nB1oRJjz4uZDMzkgCgjotXc8phfHs,7137
6
- fiqus/data/DataFiQuSConductor.py,sha256=sa_enAWP3yW0sJwpfmad173ewIv4eFC8G75UPnKnB5w,2626
7
- fiqus/data/DataFiQuSConductorAC_Strand.py,sha256=kkzcXLHKFScePjJ9tffAjBDbsV1RoCTVodZ-HBTdiO8,27909
8
- fiqus/data/DataFiQuSMultipole.py,sha256=_rX9zP-xNTZioVmu4NCaFVWF66ipesp8cSiB0pmKsG4,32377
9
- fiqus/data/DataFiQuSPancake3D.py,sha256=czgDU-h_XBq3OLqFOllr8zLx_MxQoCiWo84DsyOhhbo,136611
10
- fiqus/data/DataMultipole.py,sha256=RObn5MGoe_Xtk-8mhB1eoil1Jd5DS6BhiLUuNmLbb-E,6793
11
- fiqus/data/DataRoxieParser.py,sha256=v2F8ytjNnKLrVFizeBELb2dXu-78NH44CDLXO3CAP3I,9157
12
- fiqus/data/DataSettings.py,sha256=zs5sEYUk4xjeMc_j8gt3PMji7V0yyMYizpXxBKv0aB0,3799
13
- fiqus/data/DataWindingsCCT.py,sha256=45af8J8iAAiRlhO1eIjHsngNUWgpZAZ_UGL3aF8AJCI,1672
14
- fiqus/data/RegionsModelFiQuS.py,sha256=xS4GONADNJuy-Vm81bR-RcMa-8m3aMH_WjOXtbDRlsQ,7778
15
- fiqus/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- fiqus/geom_generators/GeometryCCT.py,sha256=W30vm8qmi_xe6Mkxqj8z3Wjs8nn0C9e2GnghsOxE9Tk,49067
17
- fiqus/geom_generators/GeometryConductorAC_Strand.py,sha256=SKjzJ5I7D1Fc2UJSaHy_QS1TxHho5pk95v0kgxV7fyk,74625
18
- fiqus/geom_generators/GeometryMultipole.py,sha256=eaxvzuayuUPc0TWFxScpImIpEze6KWfJ74KvvteldfQ,156572
19
- fiqus/geom_generators/GeometryPancake3D.py,sha256=8SAWnJfqL888SOEaMV1f_-02iDR6O8-GKrklfQ5g-mM,180145
20
- fiqus/geom_generators/GeometryPancake3DUtils.py,sha256=nmOEKtqzUWB5xbITFkIiO38FeLeIydFxtLrRyZXVQPg,23679
21
- fiqus/geom_generators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- fiqus/getdp_runners/RunGetdpCCT.py,sha256=hXRy90LAFMFl52gV6SrEwW5KYyvF3D0fqTFoN0P017U,3043
23
- fiqus/getdp_runners/RunGetdpConductorAC_Strand.py,sha256=SjaRNxGs7J1RQWVS_zocHF0rtxtD6UcOf28kxWDHKNo,9997
24
- fiqus/getdp_runners/RunGetdpMultipole.py,sha256=mYinMVQDJx2zAZIypFbl7bybu7h3TKjlExZ5evZpqYU,8200
25
- fiqus/getdp_runners/RunGetdpPancake3D.py,sha256=RLQbuYKdrelYgKBFcZ8-lZVSJLQ8gmNI0sXbJlrkYZk,10852
26
- fiqus/getdp_runners/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
- fiqus/mains/MainCCT.py,sha256=XpDPlj5n8B70ksOF6AHaeTXB752kN7CMLktISoXqirA,4422
28
- fiqus/mains/MainConductorAC_Strand.py,sha256=UsZV7t6hRSkwUMwsoWn2m7x-PuVM6yABqBjgLpC_9Qg,5015
29
- fiqus/mains/MainMultipole.py,sha256=2a6f1q6w4eBK7iME6FSPGc0zX2DEX5aU2y1YehTIXlk,9634
30
- fiqus/mains/MainPancake3D.py,sha256=FjMltWLzZN0-VqieexqhWMunMujTepM7BbAjlw6ULEg,23589
31
- fiqus/mains/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
- fiqus/mesh_generators/MeshCCT.py,sha256=e2oERrb2Vp7W8eAptijFq1vi-cUbYS_T3jCDqH3foIg,11227
33
- fiqus/mesh_generators/MeshConductorAC_Strand.py,sha256=bz8kzFDd_XnRA892ifuCp11zMTZMQ5NdsNKSslP7gZc,42466
34
- fiqus/mesh_generators/MeshMultipole.py,sha256=mjdjzw5RGlggoXAVvUqFM43yGXSwDNbta0z1l76c7uc,97181
35
- fiqus/mesh_generators/MeshPancake3D.py,sha256=u31glrOUPGityJ5S0z4n3SvI_Vqqyh62jv7OXIq3-lY,126975
36
- fiqus/mesh_generators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
- fiqus/parsers/ParserCOND.py,sha256=nQyRRZf2Jbvf6ri5rdhq2P6b52Qbp2tTHuDRT4ChxHI,41376
38
- fiqus/parsers/ParserDAT.py,sha256=SPJHDbPuk1e7F9FZ3i7oRvOvYGO4LIkpy-ROGJBUEQ0,659
39
- fiqus/parsers/ParserGetDPOnSection.py,sha256=fKDiGJfsVHceZ4ZPnQo3ue2COd7AlbnrkGsX5pXaYqA,8196
40
- fiqus/parsers/ParserGetDPTimeTable.py,sha256=-OBbvt89lbxkUy8pzOciq9qPs47d_dK_vuMXndfvMmE,4964
41
- fiqus/parsers/ParserMSH.py,sha256=ZgLQQhEukhvxp2-ccbIQu4uWlSOp3yCa-8thEKi61H8,1859
42
- fiqus/parsers/ParserPOS.py,sha256=tihug_0UnCP7ELJK0Tl2gGrHxvCC5V4Q7tpv4zd-cVY,9907
43
- fiqus/parsers/ParserRES.py,sha256=e8M8bsIgkAzr0tDcQSeEgsLVLGOmE_j6ju3fPTPQEU4,5842
44
- fiqus/parsers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
- fiqus/plotters/PlotPythonCCT.py,sha256=WITIiKSfHSvGVL52PiMWxo6ydeswe-PBE9Ta-QnMJ9E,6200
46
- fiqus/plotters/PlotPythonConductorAC.py,sha256=rugT6Czctk4lrZ0NBt23ZFBVZlkZD-zihHcbgoiwP9c,45465
47
- fiqus/plotters/PlotPythonMultipole.py,sha256=BYbdeEDgB3sqeRR7_uHb2CVm2SQ3pAbvhkLJBcuS-Yg,463
48
- fiqus/plotters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
- fiqus/post_processors/PostProcessCCT.py,sha256=csozi3iyW5cRoT97em0F0s_Egd-DG8wRAiWfLnNl6Sk,28003
50
- fiqus/post_processors/PostProcessConductorAC.py,sha256=Mv3CalGj2_pF383nZHZ-uv1j-3nz8HUjsd1jSd6AY8M,2135
51
- fiqus/post_processors/PostProcessMultipole.py,sha256=y7WbdDMJx68DVXeokD0chuJitU5j39FWGOIlqKsxELA,25398
52
- fiqus/post_processors/PostProcessPancake3D.py,sha256=PjGaohIj_oWfqyHH-Fr3CgiOitUpjGjYe2Rm3wqtM1g,12940
53
- fiqus/post_processors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
54
- fiqus/pre_processors/PreProcessCCT.py,sha256=z1TWuXNnSK2Jz93P-73XRZZO7GAlyLLEiIYnS39byCE,9042
55
- fiqus/pre_processors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
- fiqus/pro_assemblers/ProAssembler.py,sha256=DrVd1wiuv-7PIj3G38crBu07aMPyE3FOapODJN7wl9E,3572
57
- fiqus/pro_assemblers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
58
- fiqus/pro_material_functions/ironBHcurves.pro,sha256=-4xfRg4BYefTEoNawPo3nbsrJJmiSxdOTQG4aAzbvLI,17589
59
- fiqus/pro_templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
- fiqus/pro_templates/combined/CCT_template.pro,sha256=6r_fz9bH7AReCfDn33lyu472kjB0rkTma9_r4vBqV0U,13558
61
- fiqus/pro_templates/combined/ConductorAC_template.pro,sha256=8aZwuRveHY2R0bEvC9Ysz_SISPLU7eNvi5szO_RUEtA,60694
62
- fiqus/pro_templates/combined/Multipole_template.pro,sha256=Hbmh9NbZNAGsf9kUzdFEnoOnCRnIbmxdqa93jQCFsGw,97959
63
- fiqus/pro_templates/combined/Pancake3D_template.pro,sha256=OjWWWAZel5Yk_k4FEFFNkkSFkCv1N0rM2-DRvilH6dc,215797
64
- fiqus/pro_templates/combined/TSA_materials.pro,sha256=I8zVOP2ZEFqR0y3JcpSQJWaE6I4UeeMU22PtSD8ExCc,12244
65
- fiqus/pro_templates/combined/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
- fiqus/pro_templates/combined/materials.pro,sha256=D-cBOIMaQyYffIfoR4yRiK69Z6sxHu2QtyjhDIKFiXc,7038
67
- fiqus/pro_templates/separated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
- fiqus/utils/Utils.py,sha256=J8HECe0Yz50nTWtpUb8PGJGrX75wgvUkD30LopHTScw,35462
69
- fiqus/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
- fiqus/utils/update_data_settings.py,sha256=Cl_vP-7MXFHG3LiDE8nVtL7CwK9DUvDhxXV7sabP9to,1295
71
- tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
- tests/test_FiQuS.py,sha256=mlY5eRp-sE_ubaPG7HHAEsC4Q3iQwI76nfOclPg7m-M,15529
73
- tests/test_geometry_generators.py,sha256=1bk3yYaVIQ_XabaIrqIrwjOSvC0eCtBz7NeIEDlPCq8,8944
74
- tests/test_mesh_generators.py,sha256=vGFP6AoMpMcpBDXqTS4323RuGhJIJ_xKu39Z7mWnm9I,10699
75
- tests/test_solvers.py,sha256=-P8Q_HIX3s02e23bk9_SW672v7Vwgs1-e503tenFWoc,10955
76
- tests/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
- tests/utils/fiqus_test_classes.py,sha256=i7G0wWA7MNdj-pAnXnGrpnv3KXx9JMDRUbKwFMRgJLQ,30050
78
- tests/utils/generate_reference_files_ConductorAC.py,sha256=F5KK1AmHg1AmjZL6wRoR4R4kPpQu5KyLZtk1EnDsS1I,1619
79
- tests/utils/generate_reference_files_Pancake3D.py,sha256=9sULcDOmbotrbYHz8DqGv6Km7ThfltnCHFojHUx193U,3126
80
- tests/utils/helpers.py,sha256=bX3jz6Cux175TVWMpeaMo1SspQAewCSzKsC4ZwRBRR4,4052
81
- fiqus-2025.2.0.dist-info/LICENSE.txt,sha256=gcuuhKKc5-dwvyvHsXjlC9oM6N5gZ6umYbC8ewW1Yvg,35821
82
- fiqus-2025.2.0.dist-info/METADATA,sha256=WYaVeRxe2Y8fnmJr9LBx5ROdrKbmHSl_wLwxKru2weQ,8143
83
- fiqus-2025.2.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
84
- fiqus-2025.2.0.dist-info/top_level.txt,sha256=oGzSIyoVc1zYg14o67zI3QFwWsJvqNzNT0-te9WbUQc,12
85
- fiqus-2025.2.0.dist-info/RECORD,,