The below functions can be found in the p3can
module of the package.
The below functions are not automatically imported when you import the tribology package. They need to be imported on a sub-module level:
from tribology.p3can.p3can import p3can, generate_input_file
Note: The P3CAN project is currently not maintained!
The P3CAN project aimed to develop a Python 3 implementation of an open source multi-purpose (tribology) contact analyzer, both for research and higher level educational purposes. However, due to its monolithic structure it proved hard to maintain, and it can be hard for new users to understand the code in its entirety.
The P3CAN project precedes the tribology
package and many of its
functions and functionalities have since been integrated into the package. This
work will be continued in the future.
Simply put, P3CAN can be used to calculate parameters such as contact pressure, load distribution and friction energy for various tribological systems.
P3can currently provides implementations of the following tribological systems: - radial roller bearings - axial thrust roller bearings - pin-on-disk - 4-ball - ball-on-3-plates - ring-on-ring
You can run P3CAN by calling it with a program specific input file. Templates for user input files can be generated using the generate_input_file function below.
For more information on the P3CAN project, please refer to its GitHub page: https://github.com/moritzploss/p3can
p3can
(in_file='USER_INPUT.py', out_dir=None)[source]¶Start a P3CAN simulation run.
Parameters: |
|
---|---|
Returns: | sim.res_dir – The path to the simulation-specific results folder. The path is: out_dir/results/<unique simulation name> The unique simulation name is automatically generated by P3CAN. |
Return type: |
generate_input_file
(temp_type, out_file)[source]¶Generate a P3CAN input file based on a user input template.
Parameters: |
|
---|---|
Returns: | out_file – The complete file path of the output file. |
Return type: |