windloadpy 0.1__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- windloadpy-0.1/PKG-INFO +16 -0
- windloadpy-0.1/README +60 -0
- windloadpy-0.1/setup.cfg +4 -0
- windloadpy-0.1/setup.py +19 -0
- windloadpy-0.1/windloadpy/__init__.py +0 -0
- windloadpy-0.1/windloadpy/module.py +0 -0
- windloadpy-0.1/windloadpy.egg-info/PKG-INFO +16 -0
- windloadpy-0.1/windloadpy.egg-info/SOURCES.txt +9 -0
- windloadpy-0.1/windloadpy.egg-info/dependency_links.txt +1 -0
- windloadpy-0.1/windloadpy.egg-info/requires.txt +1 -0
- windloadpy-0.1/windloadpy.egg-info/top_level.txt +1 -0
windloadpy-0.1/PKG-INFO
ADDED
@@ -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].
|
windloadpy-0.1/setup.cfg
ADDED
windloadpy-0.1/setup.py
ADDED
@@ -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 @@
|
|
1
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
matplotlib
|
@@ -0,0 +1 @@
|
|
1
|
+
windloadpy
|