FEM-Design 0.0.3__tar.gz → 0.0.4__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.
- {fem_design-0.0.3/src/FEM_Design.egg-info → fem_design-0.0.4}/PKG-INFO +5 -5
- {fem_design-0.0.3 → fem_design-0.0.4}/README.md +4 -4
- {fem_design-0.0.3 → fem_design-0.0.4}/pyproject.toml +1 -1
- {fem_design-0.0.3 → fem_design-0.0.4/src/FEM_Design.egg-info}/PKG-INFO +5 -5
- {fem_design-0.0.3 → fem_design-0.0.4}/LICENSE +0 -0
- {fem_design-0.0.3 → fem_design-0.0.4}/setup.cfg +0 -0
- {fem_design-0.0.3 → fem_design-0.0.4}/src/FEM_Design.egg-info/SOURCES.txt +0 -0
- {fem_design-0.0.3 → fem_design-0.0.4}/src/FEM_Design.egg-info/dependency_links.txt +0 -0
- {fem_design-0.0.3 → fem_design-0.0.4}/src/FEM_Design.egg-info/top_level.txt +0 -0
- {fem_design-0.0.3 → fem_design-0.0.4}/src/femdesign/__init__.py +0 -0
- {fem_design-0.0.3 → fem_design-0.0.4}/src/femdesign/calculate/__init__.py +0 -0
- {fem_design-0.0.3 → fem_design-0.0.4}/src/femdesign/calculate/analysis.py +0 -0
- {fem_design-0.0.3 → fem_design-0.0.4}/src/femdesign/calculate/command.py +0 -0
- {fem_design-0.0.3 → fem_design-0.0.4}/src/femdesign/calculate/fdscript.py +0 -0
- {fem_design-0.0.3 → fem_design-0.0.4}/src/femdesign/comunication.py +0 -0
- {fem_design-0.0.3 → fem_design-0.0.4}/src/femdesign/database.py +0 -0
- {fem_design-0.0.3 → fem_design-0.0.4}/src/femdesign/utilities/__init__.py +0 -0
- {fem_design-0.0.3 → fem_design-0.0.4}/src/femdesign/utilities/filehelper.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: FEM-Design
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.4
|
|
4
4
|
Summary: The FEM-Design API package
|
|
5
5
|
Author-email: FEM-Design <femdesign.api@strusoft.com>
|
|
6
6
|
Maintainer-email: Marco Pellegrino <marco.pellegrino@strusoft.com>
|
|
@@ -47,11 +47,11 @@ from femdesign.calculate.analysis import Analysis, Design, CombSettings, CombIte
|
|
|
47
47
|
pipe = FemDesignConnection()
|
|
48
48
|
try:
|
|
49
49
|
pipe.SetVerbosity(Verbosity.SCRIPT_LOG_LINES)
|
|
50
|
-
pipe.Open(r"
|
|
50
|
+
pipe.Open(r"simple_beam.str")
|
|
51
51
|
pipe.RunAnalysis(Analysis.FrequencyAnalysis(num_shapes=5))
|
|
52
|
-
pipe.Save(r"
|
|
53
|
-
pipe.GenerateListTables(bsc_file=r"
|
|
54
|
-
csv_file=r"
|
|
52
|
+
pipe.Save(r"simple_beam_out.str")
|
|
53
|
+
pipe.GenerateListTables(bsc_file=r"quantity-estimation-steel.bsc",
|
|
54
|
+
csv_file=r"quantity-estimation-steel.csv")
|
|
55
55
|
pipe.Exit()
|
|
56
56
|
except Exception as err:
|
|
57
57
|
pipe.KillProgramIfExists()
|
|
@@ -30,11 +30,11 @@ from femdesign.calculate.analysis import Analysis, Design, CombSettings, CombIte
|
|
|
30
30
|
pipe = FemDesignConnection()
|
|
31
31
|
try:
|
|
32
32
|
pipe.SetVerbosity(Verbosity.SCRIPT_LOG_LINES)
|
|
33
|
-
pipe.Open(r"
|
|
33
|
+
pipe.Open(r"simple_beam.str")
|
|
34
34
|
pipe.RunAnalysis(Analysis.FrequencyAnalysis(num_shapes=5))
|
|
35
|
-
pipe.Save(r"
|
|
36
|
-
pipe.GenerateListTables(bsc_file=r"
|
|
37
|
-
csv_file=r"
|
|
35
|
+
pipe.Save(r"simple_beam_out.str")
|
|
36
|
+
pipe.GenerateListTables(bsc_file=r"quantity-estimation-steel.bsc",
|
|
37
|
+
csv_file=r"quantity-estimation-steel.csv")
|
|
38
38
|
pipe.Exit()
|
|
39
39
|
except Exception as err:
|
|
40
40
|
pipe.KillProgramIfExists()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: FEM-Design
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.4
|
|
4
4
|
Summary: The FEM-Design API package
|
|
5
5
|
Author-email: FEM-Design <femdesign.api@strusoft.com>
|
|
6
6
|
Maintainer-email: Marco Pellegrino <marco.pellegrino@strusoft.com>
|
|
@@ -47,11 +47,11 @@ from femdesign.calculate.analysis import Analysis, Design, CombSettings, CombIte
|
|
|
47
47
|
pipe = FemDesignConnection()
|
|
48
48
|
try:
|
|
49
49
|
pipe.SetVerbosity(Verbosity.SCRIPT_LOG_LINES)
|
|
50
|
-
pipe.Open(r"
|
|
50
|
+
pipe.Open(r"simple_beam.str")
|
|
51
51
|
pipe.RunAnalysis(Analysis.FrequencyAnalysis(num_shapes=5))
|
|
52
|
-
pipe.Save(r"
|
|
53
|
-
pipe.GenerateListTables(bsc_file=r"
|
|
54
|
-
csv_file=r"
|
|
52
|
+
pipe.Save(r"simple_beam_out.str")
|
|
53
|
+
pipe.GenerateListTables(bsc_file=r"quantity-estimation-steel.bsc",
|
|
54
|
+
csv_file=r"quantity-estimation-steel.csv")
|
|
55
55
|
pipe.Exit()
|
|
56
56
|
except Exception as err:
|
|
57
57
|
pipe.KillProgramIfExists()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|