geostructpy 0.1__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.
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.2
2
+ Name: geostructpy
3
+ Version: 0.1
4
+ Summary: This APEC internal use only for Geotechnical - Structural libraries
5
+ Home-page: https://github.com/albertp16/apec-py
6
+ Author: Albert Pamonag
7
+ Author-email: albert@apeconsultancy.net
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Dist: matplotlib
11
+ Dynamic: author
12
+ Dynamic: author-email
13
+ Dynamic: classifier
14
+ Dynamic: home-page
15
+ Dynamic: requires-dist
16
+ Dynamic: summary
@@ -0,0 +1,70 @@
1
+ # geostructpy
2
+
3
+ Academic / Research Open-source python libraries for Geotechnical Engineering for Structural Engineers.
4
+
5
+ Install package with,
6
+
7
+ `pip install geostructpy`
8
+
9
+ ## Shallow Foundation *(under-development)*
10
+
11
+ <ol>
12
+ <li> Design for Ultimate Limit State
13
+ <ol>
14
+ <li> Estimation of Bearing Capacity </li>
15
+ </ol>
16
+ </li>
17
+ <li> Design for Serviceability Limit State
18
+ <ol>
19
+ <li> Estimation of Single Pile Settlement
20
+ <ol>
21
+ <li>Immediate Settlement</i>
22
+ <li>Consolidation Settlement</i>
23
+ </ol>
24
+ </ol>
25
+ </li>
26
+ </ol>
27
+
28
+ ## Design of Deep Foundations *(under-development)*
29
+
30
+ ### Pile Foundation
31
+
32
+ <ol>
33
+ <li> Static Design Method</li>
34
+ <li> Pile Load Test</li>
35
+ <li> Design for Ultimate Limit State
36
+ <ol>
37
+ <li> Estimation of Ultimate Capacity of Piles and Pile Groups </li>
38
+ <li> Negative Skin Friction </li>
39
+ </ol>
40
+ </li>
41
+ <li> Design for Serviceability Limit State
42
+ <ol>
43
+ <li> Estimation of Single Pile Settlement</li>
44
+ <li> Estimation of Pile Group Settlement </li>
45
+ </ol>
46
+ </li>
47
+ </ol>
48
+
49
+ ## Pile Raft Foundation *(under-development)*
50
+
51
+ ## Deep Excavation *(under-development)*
52
+
53
+ ## Soil Structure Interaction *(under-development)*
54
+
55
+ ## References
56
+ <ol>
57
+ <li>Lecture Notes in Professional Master of Structural Design in Tall Buildings (PMTB) at Asian Institute Technology - Thailand </li>
58
+ <li>Das, B., Sivakugan, N. (2017). Principle of Foundation Engineering (9th ed.). Cengage</li>
59
+ <li>Poulos, H. (2017). Tall Building Foundation Design. CRC Press</li>
60
+ </ol>
61
+
62
+
63
+ Developed by:
64
+
65
+ **Albert Pamonag, M.Eng** <br>
66
+ Currently enrolled in Professional Master of Structural Design in Tall Buildings (PMTB) at Asian Institute Technology - Thailand.<br>
67
+ Completed in Master of Engineer in Civil Engineer specialization in Structural Engineering at De la Salle University - Manila.<br>
68
+ Email: albertpamonag@gmail.com
69
+
70
+
File without changes
File without changes
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.2
2
+ Name: geostructpy
3
+ Version: 0.1
4
+ Summary: This APEC internal use only for Geotechnical - Structural libraries
5
+ Home-page: https://github.com/albertp16/apec-py
6
+ Author: Albert Pamonag
7
+ Author-email: albert@apeconsultancy.net
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Dist: matplotlib
11
+ Dynamic: author
12
+ Dynamic: author-email
13
+ Dynamic: classifier
14
+ Dynamic: home-page
15
+ Dynamic: requires-dist
16
+ Dynamic: summary
@@ -0,0 +1,9 @@
1
+ README.md
2
+ setup.py
3
+ geostructpy/__init__.py
4
+ geostructpy/index.py
5
+ geostructpy.egg-info/PKG-INFO
6
+ geostructpy.egg-info/SOURCES.txt
7
+ geostructpy.egg-info/dependency_links.txt
8
+ geostructpy.egg-info/requires.txt
9
+ geostructpy.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ matplotlib
@@ -0,0 +1 @@
1
+ geostructpy
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,19 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='geostructpy',
5
+ version='0.1',
6
+ description='This APEC internal use only for Geotechnical - Structural libraries',
7
+ author='Albert Pamonag',
8
+ author_email='albert@apeconsultancy.net',
9
+ url='https://github.com/albertp16/apec-py',
10
+ packages=find_packages(),
11
+ install_requires=[
12
+ 'matplotlib'
13
+ ],
14
+ classifiers=[
15
+ 'Programming Language :: Python :: 3',
16
+ 'Operating System :: OS Independent',
17
+ ],
18
+ company='Albert Pamonag Engineering Consultancy',
19
+ )