#include <stdio.h>
#include <stdlib.h>
#include "crusde_api.h"
Include dependency graph for pinel_hs_final_relaxed.c:
Functions | |
const char * | get_name () |
const char * | get_version () |
const char * | get_authors () |
PluginCategory | get_category () |
const char * | get_description () |
void | register_parameter () |
Register parameters this Kernel claims from the input. | |
void | register_output_fields () |
Register output fields for spatial directions this Green's function calculates. | |
void | request_plugins () |
Request necessary plugins: crusde_request_green_plugin("elastic halfspace (pinel)"). | |
void | init () |
Initialization of the convolution. Allocation of memory for inputs and outputs. | |
void | run () |
Performs the fast convolution. | |
void | clear () |
Clean-up before this plug-in gets unloaded. | |
int | get_value_at (double **result, int x, int y) |
Returns the Green's Function value at Point(x,y). | |
Variables | |
double | buffer [3] |
int | x_pos |
int | y_pos |
int | z_pos |
int | error_value |
int(*) | elastic_halfspace (double **, int, int) = NULL |
int(*) | thickplate (double **, int, int) = NULL |
void clear | ( | ) |
Clean-up before this plug-in gets unloaded.
Free the integration workspace!
const char* get_authors | ( | ) |
PluginCategory get_category | ( | ) |
const char* get_description | ( | ) |
const char* get_name | ( | ) |
int get_value_at | ( | double ** | result, | |
int | x, | |||
int | y | |||
) |
Returns the Green's Function value at Point(x,y).
x | The x-Coordinate of the requested value. | |
y | The y-Coordinate of the requested value. |
const char* get_version | ( | ) |
void init | ( | ) |
Initialization of the convolution. Allocation of memory for inputs and outputs.
This function must not be called before register_parameter() unless none of the necessary values depends on parameters provided by the user, which are only set after they have been registered. This function is called some time after register_parameter().
Here U_vert_const and U_hori_const are initialized as follows:
void register_output_fields | ( | ) |
Register output fields for spatial directions this Green's function calculates.
This function calls crusde_register_output_field defined in crusde_api.h to register output field in the following order:
void register_parameter | ( | ) |
Register parameters this Kernel claims from the input.
This function calls crusde_register_green_param() defined in crusde_api.h to register references to parameters this Green's function will need to operate properly. In case an XML is used to configure the experiment, the reference to this parameter will be identified by the string passed as second argument to register_green_param().
This function registers the references in the following order:
void request_plugins | ( | ) |
Request necessary plugins: crusde_request_green_plugin("elastic halfspace (pinel)").
empty
void run | ( | ) |
Performs the fast convolution.
writes data for actual time step to file
double buffer[3] |
int(*) elastic_halfspace(double **, int, int) = NULL |
int error_value |
int(*) thickplate(double **, int, int) = NULL |
int x_pos |
int y_pos |
int z_pos |