windloadpy 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: windloadpy
3
+ Version: 0.1
4
+ Summary: This APEC internal use only for wind load calculation
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
windloadpy-0.1/README ADDED
@@ -0,0 +1,60 @@
1
+ # Wind Load Analysis
2
+
3
+ This project provides a wind load analysis tool based on the American Society of Civil Engineers (ASCE) and the National Structural Code of the Philippines (NSCP) standards.
4
+
5
+ ## Features
6
+
7
+ - Calculate wind loads based on ASCE 7-16 and NSCP 2015.
8
+ - Support for different building types and geometries.
9
+ - User-friendly interface for inputting building parameters.
10
+ - Detailed output of wind load calculations.
11
+
12
+ ## Installation
13
+
14
+ 1. Clone the repository:
15
+ ```
16
+ git clone https://github.com/yourusername/wind-load-analysis.git
17
+ ```
18
+ 2. Navigate to the project directory:
19
+ ```
20
+ cd wind-load-analysis
21
+ ```
22
+ 3. Install the required dependencies:
23
+ ```
24
+ pip install -r requirements.txt
25
+ ```
26
+
27
+ ## Usage
28
+
29
+ 1. Run the main script:
30
+ ```
31
+ python main.py
32
+ ```
33
+ 2. Enter the required building parameters as prompted.
34
+ 3. View the detailed wind load analysis results.
35
+
36
+ ## Building Parameters
37
+
38
+ - **Building Height**: The height of the building in meters.
39
+ - **Building Width**: The width of the building in meters.
40
+ - **Building Length**: The length of the building in meters.
41
+ - **Exposure Category**: The exposure category as defined by ASCE and NSCP.
42
+ - **Wind Speed**: The basic wind speed in meters per second.
43
+
44
+ ## Output
45
+
46
+ The output will include detailed calculations of wind pressures and forces acting on the building, based on the input parameters and the selected standard (ASCE or NSCP).
47
+
48
+ ## References
49
+
50
+ - ASCE 7-16: Minimum Design Loads and Associated Criteria for Buildings and Other Structures.
51
+ - NSCP 2015: National Structural Code of the Philippines.
52
+
53
+
54
+ ## Contributing
55
+
56
+ Contributions are welcome! Please open an issue or submit a pull request for any improvements or bug fixes.
57
+
58
+ ## Contact
59
+
60
+ For any questions or inquiries, please contact [yourname@example.com].
@@ -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='windloadpy',
5
+ version='0.1',
6
+ description='This APEC internal use only for wind load calculation',
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
+ )
File without changes
File without changes
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.2
2
+ Name: windloadpy
3
+ Version: 0.1
4
+ Summary: This APEC internal use only for wind load calculation
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
2
+ setup.py
3
+ windloadpy/__init__.py
4
+ windloadpy/module.py
5
+ windloadpy.egg-info/PKG-INFO
6
+ windloadpy.egg-info/SOURCES.txt
7
+ windloadpy.egg-info/dependency_links.txt
8
+ windloadpy.egg-info/requires.txt
9
+ windloadpy.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ matplotlib
@@ -0,0 +1 @@
1
+ windloadpy