FEM-Design 0.0.3__tar.gz → 0.0.5__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.5}/PKG-INFO +6 -6
- {fem_design-0.0.3 → fem_design-0.0.5}/README.md +4 -4
- {fem_design-0.0.3 → fem_design-0.0.5}/pyproject.toml +3 -2
- {fem_design-0.0.3 → fem_design-0.0.5/src/FEM_Design.egg-info}/PKG-INFO +6 -6
- {fem_design-0.0.3 → fem_design-0.0.5}/LICENSE +0 -0
- {fem_design-0.0.3 → fem_design-0.0.5}/setup.cfg +0 -0
- {fem_design-0.0.3 → fem_design-0.0.5}/src/FEM_Design.egg-info/SOURCES.txt +0 -0
- {fem_design-0.0.3 → fem_design-0.0.5}/src/FEM_Design.egg-info/dependency_links.txt +0 -0
- {fem_design-0.0.3 → fem_design-0.0.5}/src/FEM_Design.egg-info/top_level.txt +0 -0
- {fem_design-0.0.3 → fem_design-0.0.5}/src/femdesign/__init__.py +0 -0
- {fem_design-0.0.3 → fem_design-0.0.5}/src/femdesign/calculate/__init__.py +0 -0
- {fem_design-0.0.3 → fem_design-0.0.5}/src/femdesign/calculate/analysis.py +0 -0
- {fem_design-0.0.3 → fem_design-0.0.5}/src/femdesign/calculate/command.py +0 -0
- {fem_design-0.0.3 → fem_design-0.0.5}/src/femdesign/calculate/fdscript.py +0 -0
- {fem_design-0.0.3 → fem_design-0.0.5}/src/femdesign/comunication.py +0 -0
- {fem_design-0.0.3 → fem_design-0.0.5}/src/femdesign/database.py +0 -0
- {fem_design-0.0.3 → fem_design-0.0.5}/src/femdesign/utilities/__init__.py +0 -0
- {fem_design-0.0.3 → fem_design-0.0.5}/src/femdesign/utilities/filehelper.py +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: FEM-Design
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.5
|
|
4
4
|
Summary: The FEM-Design API package
|
|
5
5
|
Author-email: FEM-Design <femdesign.api@strusoft.com>
|
|
6
|
-
Maintainer-email: Marco Pellegrino <marco.pellegrino@strusoft.com>
|
|
6
|
+
Maintainer-email: Marco Pellegrino <marco.pellegrino@strusoft.com>, Illyés Zoltán <sinnach@strusoft.hu>
|
|
7
7
|
Project-URL: Homepage, https://femdesign-api-docs.onstrusoft.com
|
|
8
8
|
Project-URL: Repository, https://github.com/strusoft/femdesign-api
|
|
9
9
|
Project-URL: Issues, https://github.com/strusoft/femdesign-api/issues
|
|
@@ -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,11 +1,12 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "FEM-Design"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.5"
|
|
4
4
|
authors = [
|
|
5
5
|
{ name="FEM-Design", email="femdesign.api@strusoft.com" },
|
|
6
6
|
]
|
|
7
7
|
maintainers = [
|
|
8
|
-
{name = "Marco Pellegrino", email = "marco.pellegrino@strusoft.com"}
|
|
8
|
+
{name = "Marco Pellegrino", email = "marco.pellegrino@strusoft.com"},
|
|
9
|
+
{name = "Illyés Zoltán", email = "sinnach@strusoft.hu"},
|
|
9
10
|
]
|
|
10
11
|
description = "The FEM-Design API package"
|
|
11
12
|
readme = "README.md"
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: FEM-Design
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.5
|
|
4
4
|
Summary: The FEM-Design API package
|
|
5
5
|
Author-email: FEM-Design <femdesign.api@strusoft.com>
|
|
6
|
-
Maintainer-email: Marco Pellegrino <marco.pellegrino@strusoft.com>
|
|
6
|
+
Maintainer-email: Marco Pellegrino <marco.pellegrino@strusoft.com>, Illyés Zoltán <sinnach@strusoft.hu>
|
|
7
7
|
Project-URL: Homepage, https://femdesign-api-docs.onstrusoft.com
|
|
8
8
|
Project-URL: Repository, https://github.com/strusoft/femdesign-api
|
|
9
9
|
Project-URL: Issues, https://github.com/strusoft/femdesign-api/issues
|
|
@@ -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
|