forr08a
aerofoilcd(X)
¶
Computes the drag coefficient (cd) of an aerofoil based on the shape parameter X.
This function reads the drag coefficient data from the “cd_data.csv” file and uses the input X (rounded to the nearest 0.01) to return the corresponding drag coefficients.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
ndarray
|
A 1D NumPy array of values in the range [0, 1] representing the shape parameters. |
required |
Returns:
Type | Description |
---|---|
ndarray
|
np.ndarray: A 1D NumPy array of drag coefficients (cd) corresponding to the input X. |
Raises:
Type | Description |
---|---|
ValueError
|
If any value in X is outside the range [0, 1]. |
Examples:
>>> from spotpython.surrogate.functions.forr08a import aerofoilcd
>>> X = np.array([0.5, 0.75])
>>> aerofoilcd(X)
array([0.029975, 0.033375])
Source code in spotpython/surrogate/functions/forr08a.py
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 |
|
branin(x)
¶
Branin’s test function that takes a 2D input vector x
in the range [0, 1] for each dimension
and returns the corresponding scalar function value. The function is vectorized to handle
multiple inputs.
The function is defined as
f(x) = a * (X2 - b * X1^2 + c * X1 - d)^2 + e * (1 - ff) * cos(X1) + e + 5 * x1
where: X1 = 15 * x1 - 5 X2 = 15 * x2
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x |
ndarray
|
A 2D NumPy array of shape (n_samples, 2) where each row is a 2D input vector. |
required |
Returns:
Type | Description |
---|---|
ndarray
|
np.ndarray: The calculated function values for the input |
Raises:
Type | Description |
---|---|
ValueError
|
If |
Examples:
>>> import numpy as np
>>> from spotpython.surrogate.functions.forr08a import branin
>>> # Single input
>>> print(branin(np.array([[0.5, 0.5]])))
[26.63]
>>> # Multiple inputs
>>> x = np.array([[0.0, 0.0], [0.25, 0.25], [0.5, 0.5], [0.75, 0.75], [1.0, 1.0]])
>>> print(branin(x))
[308.1291, 34.0028, 26.63, 126.3879, 150.8722]
Source code in spotpython/surrogate/functions/forr08a.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
|
onevar(x)
¶
One-variable test function that takes a scalar or 1D array input x
in the range [0, 1]
and returns the corresponding function values. The function is vectorized to handle
multiple inputs.
The function is defined as
f(x) = ((6x - 2)^2) * np.sin((6x - 2) * 2)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x |
ndarray
|
A scalar or 1D NumPy array of values in the range [0, 1]. |
required |
Returns:
Type | Description |
---|---|
ndarray
|
np.ndarray: The calculated function values for the input |
Raises:
Type | Description |
---|---|
ValueError
|
If any value in |
Examples:
>>> import numpy as np
>>> from spotpython.surrogate.functions.forr08a import onevar
>>> # Single input
>>> print(onevar(np.array([0.5])))
[0.9093]
>>> # Multiple inputs
>>> x = np.array([0.0, 0.25, 0.5, 0.75, 1.0])
>>> print(onevar(x))
[3.0272, -0.2104, 0.9093, -5.9933, 15.8297]
Source code in spotpython/surrogate/functions/forr08a.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
|