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.
Files changed (44) hide show
  1. KIB_LAP/Betonbau/TEST_Rectangular.py +21 -0
  2. KIB_LAP/Betonbau/beam_rectangular.py +4 -0
  3. KIB_LAP/FACHWERKEBEN/Elements.py +209 -0
  4. KIB_LAP/FACHWERKEBEN/InputData.py +118 -0
  5. KIB_LAP/FACHWERKEBEN/Iteration.py +967 -0
  6. KIB_LAP/FACHWERKEBEN/Materials.py +30 -0
  7. KIB_LAP/FACHWERKEBEN/Plotting.py +681 -0
  8. KIB_LAP/FACHWERKEBEN/__init__.py +4 -0
  9. KIB_LAP/FACHWERKEBEN/main.py +27 -0
  10. KIB_LAP/Plattentragwerke/PlateBendingKirchhoff.py +36 -29
  11. KIB_LAP/STABRAUM/InputData.py +13 -2
  12. KIB_LAP/STABRAUM/Output_Data.py +61 -0
  13. KIB_LAP/STABRAUM/Plotting.py +1453 -0
  14. KIB_LAP/STABRAUM/Programm.py +518 -1026
  15. KIB_LAP/STABRAUM/Steifigkeitsmatrix.py +338 -117
  16. KIB_LAP/STABRAUM/main.py +58 -0
  17. KIB_LAP/STABRAUM/results.py +37 -0
  18. KIB_LAP/Scheibe/Assemble_Stiffness.py +246 -0
  19. KIB_LAP/Scheibe/Element_Stiffness.py +362 -0
  20. KIB_LAP/Scheibe/Meshing.py +365 -0
  21. KIB_LAP/Scheibe/Output.py +34 -0
  22. KIB_LAP/Scheibe/Plotting.py +722 -0
  23. KIB_LAP/Scheibe/Shell_Calculation.py +523 -0
  24. KIB_LAP/Scheibe/Testing_Mesh.py +25 -0
  25. KIB_LAP/Scheibe/__init__.py +14 -0
  26. KIB_LAP/Scheibe/main.py +33 -0
  27. KIB_LAP/StabEbenRitz/Biegedrillknicken.py +757 -0
  28. KIB_LAP/StabEbenRitz/Biegedrillknicken_Trigeometry.py +328 -0
  29. KIB_LAP/StabEbenRitz/Querschnittswerte.py +527 -0
  30. KIB_LAP/StabEbenRitz/Stabberechnung_Klasse.py +868 -0
  31. KIB_LAP/plate_bending_cpp.cp313-win_amd64.pyd +0 -0
  32. KIB_LAP/plate_buckling_cpp.cp313-win_amd64.pyd +0 -0
  33. {kib_lap-0.5.dist-info → kib_lap-0.7.7.dist-info}/METADATA +1 -1
  34. {kib_lap-0.5.dist-info → kib_lap-0.7.7.dist-info}/RECORD +37 -19
  35. Examples/Cross_Section_Thin.py +0 -61
  36. KIB_LAP/Betonbau/Bemessung_Zust_II.py +0 -648
  37. KIB_LAP/Betonbau/Iterative_Design.py +0 -723
  38. KIB_LAP/Plattentragwerke/NumInte.cpp +0 -23
  39. KIB_LAP/Plattentragwerke/NumericalIntegration.cpp +0 -23
  40. KIB_LAP/Plattentragwerke/plate_bending_cpp.cp313-win_amd64.pyd +0 -0
  41. KIB_LAP/main.py +0 -2
  42. {Examples → KIB_LAP/StabEbenRitz}/__init__.py +0 -0
  43. {kib_lap-0.5.dist-info → kib_lap-0.7.7.dist-info}/WHEEL +0 -0
  44. {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
- }
KIB_LAP/main.py DELETED
@@ -1,2 +0,0 @@
1
- def hello():
2
- print("Hello")
File without changes
File without changes