Python library to model, project and analyse piping and pumping systems
Project description
Conduit Forge
This project is destinated to offer a flexible structure to model piping systems in Python. This library uses classes to represent some common piping components, such as: Pipes, joints, elbows, connectors and etc.
Scope/Limitations of the Project
This library is limited to model the piping systems under the conditions bellow:
* Non-compressible flow;
* Single phase flow;
* Single Chemical Species;
* Isotermic flow;
* Adiabatic flow;
Documentation
Main Classes and Piping systems Objects
Port Class
This class, is the responsible for storing the size, shape and position of the extremities of some piping component. In the example of the inlet Port of a Pipe:
import conduitforge as cf
pipe_1 = cf.Pipe(internal_diam = 3, length = 12)
print(f'\n{type(pipe.component_input_port[0]) = }')
print(f'\n{pipe_1.component_input_port[0].geometry = }') #
print(f'\n{pipe_1.component_input_port[0].characteristic_length = }')
>>>type(pipe_1.component_input_port[0]) = <class__Port__>
>>>pipe_1.component_input_port[0].geometry = 'cilyndrical
>>>pipe_1.component_input_port[0].characteristic_length = 3
Component Class
This class is where all the basic propperties (and behaviour) of all the components of a piping/pumping system are declared. It isn't meant to be used directly by the user, for it was created to increase modularity and further maintenance of the code.
- Pipe: A child-class of Component, represents a cilyndrical Pipe.
- Duct: A child-class of Pipe, used for square or rectangular ducts.
- Custom_Connector: A child-class of Component, allows the user to create Custom connectors.
Current Class
This class stores the hidraulic and thermodynamic properties of some stream of fluid, such as mass flow, chemical composition, pressure, temperature, density viscosity and etc.
Mosaic Class
This class maintains a list of joints made between currents, components and other objects.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file conduit_forge-0.0.0.tar.gz
.
File metadata
- Download URL: conduit_forge-0.0.0.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f3b3e1146da528ec4ff5d5c77ba65fee422810cbb8053e1784f7fefed79137e |
|
MD5 | a8b08be624f7d28a77e9dd415243c9e9 |
|
BLAKE2b-256 | 7313d0e3748f28abf525b42a745582bdab7e2b4d2e2122b6b443e3ada9d105d7 |
File details
Details for the file conduit_forge-0.0.0-py3-none-any.whl
.
File metadata
- Download URL: conduit_forge-0.0.0-py3-none-any.whl
- Upload date:
- Size: 2.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a1c5034fe67d47d7f6fb0de8822fbf69ea6f7e12b7def3dbbbf38c37e1f1f75 |
|
MD5 | c9e5b0685fd788f489e4b0aadb5e9869 |
|
BLAKE2b-256 | e5d452c2ba3f80afb7977b017b8811716bb1416ca3bdb6ca35c9d1d9a69cf58e |