معرفی شرکت ها


eurocodepy-0.1.9


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A package for eurocode calculations
ویژگی مقدار
سیستم عامل -
نام فایل eurocodepy-0.1.9
نام eurocodepy
نسخه کتابخانه 0.1.9
نگهدارنده []
ایمیل نگهدارنده []
نویسنده -
ایمیل نویسنده Paulo Cachim <pcachim@ua.pt>
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/eurocodepy/
مجوز -
# eurocodepy v0.1.30 EurocodePy is a Python package for calculating structures according to Eurocodes. It provides a collection of functions that enable engineers to design and analyze structures based on the Eurocode standards. In addition, it includes a database of structural materials and steel profiles, making it easy to design and analyze structures according to Eurocode standards. There are also some functions to work with material properties: * creep_coef * shrink_strain The **utils** package has some functions that can be useful: * stress: calculate the principal stresses and vectors, and the stress inavariants (I1, J2, J3, ...) ## Installation You can install EurocodePy using pip by running the following command: ```shell pip install eurocodepy ``` Too upgrade to the latest version use: ```shell pip install eurocodepy --upgrade ``` ## Usage EurocodePy is designed to be easy to use. Simply import the package and start using the functions. Here's an example of how to calculate the bending resistance of a steel beam: ```python import eurocodepy as ec beam = ec.SteelBeam('HEA200') beam.check_bending_capacity(M=1000) ``` EurocodePy provides a range of functions for designing and analyzing structures according to Eurocodes. Here are some examples: from eurocodepy import ec2 ## Materials and Profiles Database EurocodePy includes a database of structural materials and steel profiles. The database is stored in a JSON file and can be easily updated or extended. The materials database includes properties such as the density, modulus of elasticity, and Poisson's ratio, while the steel profiles database includes properties such as the cross-sectional area, moment of inertia, and section modulus. The database is stored in a JSON file 'eurocodes.json'. This file is loaded when the package is impoorted, soo you can modified it to include you own properties. If you have some suggestions or materials to add to the database and want them to be included for all the coommunity, please contribute as described below in the [contributions](#contributing) section. Steel profiles arre stored in a separate file 'prof_euro.json' The database can be accessed through a dictionary. There are also some aliases to easily access the database. The following code gives examples on how to use it. ```Python import eurocodepy as ec # To access the entire database db = ec.db # To access concrete class C30/37 conc = ec.db["Materials"]["Concrete"]["Classes"]["C30/37"] # Alternative 1 conc = ec.Materials["Concrete"]["Classes"]["C30/37"] # Alternative 2 conc = ec.Concrete["Classes"]["C30/37"] # Alternative 3 conc = ec.ConcreteClasses["C30/37"] # Alternative 4 # to access a steel profile ipe200 = ec.SteelProfiles["I_SECTION"]["IPE200] ``` Current materials in the database are: * concrete (C20/25 to C90/105) * timber (C14 to C24, D18, GL24 to 36) * reinforcement - general (B400, B450, B500, B550, B600, B700, cclasses A, B and C: B400A etc.) * reinforcement - portuguese (A400NR, A400NRSD, A500NR, A500NRSD, A500ER, A500EL) * structural steel (S235, S275, S355, S450) Available european steel profiles are: * I sections (IPE, HEA, HEB, HEM) * L sections * C sections * T sections * Pipe sections * Box sections * Double L sections * Double C sections ## Documentation A more or less complete description of existing packages and modules can be found on [eurocodepy.readthedocs.io](https://eurocodepy.readthedocs.io) ## License This project is licensed under the MIT License. See the [LICENSE](LICENSE.md) file for details. ## Contributing We welcome contributions from everyone. Before getting started, please read our [Code of Conduct](CODE_OF_CONDUCT.md) and [Contributing Guidelines](CONTRIBUTING.md).


زبان مورد نیاز

مقدار نام
>=3.9 Python


نحوه نصب


نصب پکیج whl eurocodepy-0.1.9:

    pip install eurocodepy-0.1.9.whl


نصب پکیج tar.gz eurocodepy-0.1.9:

    pip install eurocodepy-0.1.9.tar.gz