Install
To use the framework in a Python environment, use the following command:
pip install parepy-toolbox
# or pip install --upgrade parepy-toolbox
Files structure
Let's use the example of building a problem in PAREpy using a Jupyter Notebook or Python file. Therefore, the basic file structure that you must assemble to use the library must be as follows:
.
.
.
└── problem_directory
└── of_file.py
└── your_problem.ipynb # or your_problem.py
└── file 0
└── file 1
└── file 2
...
└── file n-1
└── file n
The of_file.py
file should contain the problem's objective function. The your_problem
file will contain the call to the main function and other settings necessary for using the algorithm.
of_file.py
of_file.py
is a Python function, and the user needs to define it for PAREpy to work. of_file.py
has a fixed structure that must be respected, as described below:
def my_function(x, none_variable):
# add your code
return r, s, g
of_file.py
has two parameters:
x
(type list): list of design random variables. PAREpy automatically generates these values;none_variable
(typeNone
,list
,float
,dictionary
,str
orany
): The user can define this variable. The user can input any value in this variable when calling the framework's main function.
of_file.py
has three returns:
When you assemble this function, you must maintain this standard and input order.
r
(typelist
): list of values. In structural problems, we recommend placing the capacity on this variable;s
(typelist
): list of values. In structural problems, we recommend placing the demand on this variable;g
(typelist
): State limit function \(\mathbf{G} = \mathbf{R} - \mathbf{S}\). Mandatory function return.
The lists
r
,s
, andg
must be the same size and will be defined in the main function setup (keynumber of state limit functions or constraints
). Furthermore, the listg
must necessarily be this function’s last return variable.
After the run, all lists are shown in the data frame results.
To demostrate how to create a object function we use Beck [1] example. The State Limit Function is given by:
\[ \mathbf{G} = \mathbf{R}_d - \mathbf{D} - \mathbf{L} \] | (1) |
Option 1
def example_function(x, none_variable):
"""Beck example
"""
# random variables statement
r_d = x[0]
d = x[1]
l = x[2]
# state limite function
r = r_d
s = d + l
g = r - s
return [r], [s], [g]
Option 2
def example_function(x, none_variable):
"""Beck example
"""
# random variables statement
r_d = x[0]
d = x[1]
l = x[2]
# state limite function
g = r_d - d - l
return [r_d], [d+l], [g]
Option 3
def example_function(x, none_variable):
"""Beck example
"""
# random variables statement
r_d = x[0]
d = x[1]
l = x[2]
# state limite function
r = [r_d]
s = [d + l]
g = [r - s]
return r, s, g
Using two state limit functions:
\[ \mathbf{G}_0 = \mathbf{R}_d - \mathbf{D} - \mathbf{L} \] | (1) |
\[ \mathbf{G}_1 = \mathbf{\sigma _y} \cdot \mathbf{W} - \mathbf{M} \] | (2) |
def example_function(x, none_variable):
"""Beck example
"""
# random variables statement g_0
r_d = x[0]
d = x[1]
l = x[2]
# random variables statement g_1
sigma_y = x[3]
w = x[4]
m = x[5]
# state limite function g_0
r_0 = r_d
s_0 = d + l
g_0 = r_0 - s_0
# state limite function g_1
r_1 = sigma_y * w
s_1 = m
g_1 = r_1 - s_1
return [r_0, r_1], [s_0, s_1], [g_0, g_1]
See more details in the following sections and verify how PAREpy can be used in your problem.
Reference list
ID | Reference |
---|---|
[1] | Beck AT. Confiabilidade e segurança das estruturas. Elsevier; 2019. ISBN 978-85-352-8895-7 |