You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create multiple fractures with generate_fractures (#46)
* First attempt at outputting all fracture meshes. Ok when no more than 1 intersection with 2 faults.
* Corrected first commit, now works for multiple fractures at a same time.
* docs update
* Allows for flexibility in data mode for fractures
* yapf formatting
* Better docs readability
* Corrected tests with new formalism
* TypeAlias cannot be used in prod machines because of old python version
* yapf formatting
f"[string]: If the \"{__FIELD_POLICY}\"{__POLICY} is selected, defines which field will be considered to define the fractures. "
46
-
f"If the \"{__INTERNAL_SURFACES_POLICY}\"{__POLICY} is selected, defines the name of the attribute will be considered to identify the fractures."
46
+
f"If the \"{__INTERNAL_SURFACES_POLICY}\"{__POLICY} is selected, defines the name of the attribute will be considered to identify the fractures."
47
47
)
48
48
p.add_argument(
49
49
'--'+__FIELD_VALUES,
50
50
type=str,
51
51
help=
52
-
f"[list of comma separated integers]: If the \"{__FIELD_POLICY}\"{__POLICY} is selected, which changes of the field will be considered as a fracture. If the \"{__INTERNAL_SURFACES_POLICY}\"{__POLICY} is selected, list of the fracture attributes."
53
-
)
52
+
f"[list of comma separated integers]: If the \"{__FIELD_POLICY}\"{__POLICY} is selected, which changes of the field will be considered "
53
+
f"as a fracture. If the \"{__INTERNAL_SURFACES_POLICY}\"{__POLICY} is selected, list of the fracture attributes. "
54
+
f"You can create multiple fractures by separating the values with ':' like shown in this example. "
55
+
f"--{__FIELD_VALUES} 10,12:13,14,16,18:22 will create 3 fractures identified respectively with the values (10,12), (13,14,16,18) and (22). "
56
+
f"If no ':' is found, all values specified will be assumed to create only 1 single fracture." )
0 commit comments