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
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# DEPENDENCIES
|
|
2
|
+
import copy #Allows us to create copies of objects in memory
|
|
3
|
+
import math #Math functionality
|
|
4
|
+
import numpy as np #Numpy for working with arrays
|
|
5
|
+
import matplotlib.pyplot as plt #Plotting functionality
|
|
6
|
+
import matplotlib.colors #For colormap functionality
|
|
7
|
+
import ipywidgets as widgets
|
|
8
|
+
from glob import glob #Allows check that file exists before import
|
|
9
|
+
from numpy import genfromtxt #For importing structure data from csv
|
|
10
|
+
import pandas as pd
|
|
11
|
+
|
|
12
|
+
class Material:
|
|
13
|
+
def __init__(self):
|
|
14
|
+
print("Material Class")
|
|
15
|
+
self.MaterialData()
|
|
16
|
+
|
|
17
|
+
def MaterialData(self):
|
|
18
|
+
#MANDATORY IMPORT: nodal coordinates
|
|
19
|
+
if glob('data/Material.csv'):
|
|
20
|
+
self.Materials = pd.read_csv('data/Material.csv')
|
|
21
|
+
print('1. 🟢 Material.csv imported')
|
|
22
|
+
else:
|
|
23
|
+
print('1. 🛑 STOP: Material.csv not found')
|
|
24
|
+
|
|
25
|
+
print(self.Materials)
|
|
26
|
+
self.N = self.Materials['No'].to_numpy()
|
|
27
|
+
self.E = self.Materials['E'].to_numpy()
|
|
28
|
+
self.A = self.Materials['A'].to_numpy()
|
|
29
|
+
self.gamma = self.Materials['gamma'].to_numpy()
|
|
30
|
+
self.P0 = self.Materials['P0'].to_numpy()
|