This training supplies the tools needed to describe and apply the workflow for dynamic analysis in FLAC3D, demonstrating a comprehensive understanding of each step involved, including model setup, boundary conditions, input signal application, and damping, to effectively analyze dynamic behavior in geotechnical simulations.
The FISH scripting language is now multi-threaded, resulting in much faster execution of functions. To take full advantage of multi-threaded FISH, a new LIST data type, SPLITTING syntax, and OPERATORS have been added.
Lists are one-dimensional arrays of general FISH values. They differ from matrices in that each index can hold any valid FISH type (including another list). They differ from arrays in that they are passed by value, and they can only be of one dimension. You can iterate through all the elements of a list using the loop foreach statement. The access operator -> can be applied to lists, which permits the retrieval or assignment of an element and returns another list.
FISH splitting allows a function, operator, or library call to be executed repeatedly on each element of an aggregate type (a list, an array, a container of objects, etc). Splitting is executed on all available threads. Splitting can be used as an alternative to loop statements to perform actions on many objects in a very clear and concise manner.
In order to make a split call, use the split operator '::' prefix to one or more arguments of the function, operator, or library call. The example below reduces the elastic shear modulus of an elastic model.
FISH operators are a special class of function designed to be executed in a multi-threaded environment.
On a repeated function call made using splitting, if the symbol was declared as an operator these separate executions will be distributed on all available threads (see the program threads command). On a typical modern multi-core computer and a large set of data this can result in a very large increase in speed.
program threads
One of the most common and important uses of FISH operators—indeed their primary reason for being—is to use during cycling. Otherwise a single threaded FISH function that checks or changes all objects in a model will easily dominate the run time of the system.
The Python programming language is embedded inside the most current versions of PFC, FLAC3D, and 3DEC. Python is a popular, general purpose programming language with good support for scientific and numerical programming. Interaction between Python data files and models (e.g., zones, blocks, balls, rigid blocks, etc.) is also possible using the itasca Python module.
itasca
Create custom publication quality figures using Matplotlib, a Python 2D plotting library that produces figures in a variety of hardcopy formats and interactive environments across platforms. Plot types include lines, bars, pie, polar, statistical, contours, fields, and a large number of specialty charts.
Use NumPy for scientific computing with Python for:
Advanced, customizable calculations are available via SciPy which builds on the NumPy array object. SciPy contains modules for optimization, linear algebra, integration, interpolation, special functions, FFT, signal and image processing, ODE solvers, and other tasks common in science and engineering.
Pyside provides Python bindings for the Qt library that is used by the 3DEC user interface (UI). With PySide, users can modify, manipulate, or extend the 3DEC UI, create and control custom UI panes, including labels, text boxes, pane docking, and command buttons. Streamline modeling of complex problems by creating custom applications with dedicated user dialogs to input parameters and post-process simulation results.
Releases
Legacy Releases