Last change
on this file since 11695 was 11695, checked in by Eric.Larour, 13 years ago |
Completed separation of Petsc from ISSM. Matrix and Vector
are now the vehicles for Mat and Vec objects when running with
Petsc, or double* when running with a custom made type of matrix (still
to be finished).
|
File size:
514 bytes
|
Rev | Line | |
---|
[2287] | 1 | /*!\file InterpFromMeshToMesh3dx.h
|
---|
[1189] | 2 | * \brief: header file for Data interpolation routines.
|
---|
| 3 | */
|
---|
| 4 |
|
---|
[2287] | 5 | #ifndef _INTERPFROMMESHTOMESH3DX_H
|
---|
| 6 | #define _INTERPFROMMESHTOMESH3DX_H
|
---|
[1189] | 7 |
|
---|
[3913] | 8 | #include "../../toolkits/toolkits.h"
|
---|
[1189] | 9 |
|
---|
[11695] | 10 | int InterpFromMeshToMesh3dx( Vector** pdata_prime,double* index_data, double* x_data, double* y_data, double* z_data, int nods_data,int nels_data, double* data, int data_length, double* x_prime, double* y_prime, double* z_prime, int nods_prime,double default_value);
|
---|
[1189] | 11 |
|
---|
[2287] | 12 | #endif /* _INTERPFROMMESHTOMESH3DX_H */
|
---|
[1189] | 13 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.