kib-lap 0.5__cp313-cp313-win_amd64.whl → 0.7.7__cp313-cp313-win_amd64.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.
- KIB_LAP/Betonbau/TEST_Rectangular.py +21 -0
- KIB_LAP/Betonbau/beam_rectangular.py +4 -0
- KIB_LAP/FACHWERKEBEN/Elements.py +209 -0
- KIB_LAP/FACHWERKEBEN/InputData.py +118 -0
- KIB_LAP/FACHWERKEBEN/Iteration.py +967 -0
- KIB_LAP/FACHWERKEBEN/Materials.py +30 -0
- KIB_LAP/FACHWERKEBEN/Plotting.py +681 -0
- KIB_LAP/FACHWERKEBEN/__init__.py +4 -0
- KIB_LAP/FACHWERKEBEN/main.py +27 -0
- KIB_LAP/Plattentragwerke/PlateBendingKirchhoff.py +36 -29
- KIB_LAP/STABRAUM/InputData.py +13 -2
- KIB_LAP/STABRAUM/Output_Data.py +61 -0
- KIB_LAP/STABRAUM/Plotting.py +1453 -0
- KIB_LAP/STABRAUM/Programm.py +518 -1026
- KIB_LAP/STABRAUM/Steifigkeitsmatrix.py +338 -117
- KIB_LAP/STABRAUM/main.py +58 -0
- KIB_LAP/STABRAUM/results.py +37 -0
- KIB_LAP/Scheibe/Assemble_Stiffness.py +246 -0
- KIB_LAP/Scheibe/Element_Stiffness.py +362 -0
- KIB_LAP/Scheibe/Meshing.py +365 -0
- KIB_LAP/Scheibe/Output.py +34 -0
- KIB_LAP/Scheibe/Plotting.py +722 -0
- KIB_LAP/Scheibe/Shell_Calculation.py +523 -0
- KIB_LAP/Scheibe/Testing_Mesh.py +25 -0
- KIB_LAP/Scheibe/__init__.py +14 -0
- KIB_LAP/Scheibe/main.py +33 -0
- KIB_LAP/StabEbenRitz/Biegedrillknicken.py +757 -0
- KIB_LAP/StabEbenRitz/Biegedrillknicken_Trigeometry.py +328 -0
- KIB_LAP/StabEbenRitz/Querschnittswerte.py +527 -0
- KIB_LAP/StabEbenRitz/Stabberechnung_Klasse.py +868 -0
- KIB_LAP/plate_bending_cpp.cp313-win_amd64.pyd +0 -0
- KIB_LAP/plate_buckling_cpp.cp313-win_amd64.pyd +0 -0
- {kib_lap-0.5.dist-info → kib_lap-0.7.7.dist-info}/METADATA +1 -1
- {kib_lap-0.5.dist-info → kib_lap-0.7.7.dist-info}/RECORD +37 -19
- Examples/Cross_Section_Thin.py +0 -61
- KIB_LAP/Betonbau/Bemessung_Zust_II.py +0 -648
- KIB_LAP/Betonbau/Iterative_Design.py +0 -723
- KIB_LAP/Plattentragwerke/NumInte.cpp +0 -23
- KIB_LAP/Plattentragwerke/NumericalIntegration.cpp +0 -23
- KIB_LAP/Plattentragwerke/plate_bending_cpp.cp313-win_amd64.pyd +0 -0
- KIB_LAP/main.py +0 -2
- {Examples → KIB_LAP/StabEbenRitz}/__init__.py +0 -0
- {kib_lap-0.5.dist-info → kib_lap-0.7.7.dist-info}/WHEEL +0 -0
- {kib_lap-0.5.dist-info → kib_lap-0.7.7.dist-info}/top_level.txt +0 -0
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
// NumericalIntegration.cpp
|
|
2
|
-
|
|
3
|
-
#include "NumInte.h"
|
|
4
|
-
|
|
5
|
-
double NumericalIntegration::integrate_product(
|
|
6
|
-
const std::function<double(double, int)> &func1,
|
|
7
|
-
const std::function<double(double, int)> &func2,
|
|
8
|
-
const std::vector<double> &points,
|
|
9
|
-
int index1,
|
|
10
|
-
int index2)
|
|
11
|
-
{
|
|
12
|
-
// Trapezregel für die numerische Integration
|
|
13
|
-
double sum = 0.0;
|
|
14
|
-
for (size_t i = 0; i < points.size() - 1; ++i)
|
|
15
|
-
{
|
|
16
|
-
double x0 = points[i];
|
|
17
|
-
double x1 = points[i + 1];
|
|
18
|
-
double f0 = func1(x0, index1) * func2(x0, index2);
|
|
19
|
-
double f1 = func1(x1, index1) * func2(x1, index2);
|
|
20
|
-
sum += 0.5 * (f0 + f1) * (x1 - x0);
|
|
21
|
-
}
|
|
22
|
-
return sum;
|
|
23
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
// NumericalIntegration.cpp
|
|
2
|
-
|
|
3
|
-
#include "NumericalIntegration.h"
|
|
4
|
-
|
|
5
|
-
double NumericalIntegration::integrate_product(
|
|
6
|
-
const std::function<double(double, int)> &func1,
|
|
7
|
-
const std::function<double(double, int)> &func2,
|
|
8
|
-
const std::vector<double> &points,
|
|
9
|
-
int index1,
|
|
10
|
-
int index2)
|
|
11
|
-
{
|
|
12
|
-
// Trapezregel für die numerische Integration
|
|
13
|
-
double sum = 0.0;
|
|
14
|
-
for (size_t i = 0; i < points.size() - 1; ++i)
|
|
15
|
-
{
|
|
16
|
-
double x0 = points[i];
|
|
17
|
-
double x1 = points[i + 1];
|
|
18
|
-
double f0 = func1(x0, index1) * func2(x0, index2);
|
|
19
|
-
double f1 = func1(x1, index1) * func2(x1, index2);
|
|
20
|
-
sum += 0.5 * (f0 + f1) * (x1 - x0);
|
|
21
|
-
}
|
|
22
|
-
return sum;
|
|
23
|
-
}
|
|
File without changes
|
KIB_LAP/main.py
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|