1 #include <private/fortranimpl.h> 2 #include <petscts.h> 3 4 #if defined(PETSC_HAVE_FORTRAN_CAPS) 5 #define tssetrhsfunction_ TSSETRHSFUNCTION 6 #define tssetmatrices_ TSSETMATRICES 7 #define tsgetmatrices_ TSGETMATRICES 8 #define tssetrhsjacobian_ TSSETRHSJACOBIAN 9 #define tsgetrhsjacobian_ TSGETRHSJACOBIAN 10 #define tsview_ TSVIEW 11 #define tsgetoptionsprefix_ TSGETOPTIONSPREFIX 12 #define tsmonitorset_ TSMONITORSET 13 #define tsdefaultcomputejacobian_ TSDEFAULTCOMPUTEJACOBIAN 14 #define tsdefaultcomputejacobiancolor_ TSDEFAULTCOMPUTEJACOBIANCOLOR 15 #define tsmonitordefault_ TSMONITORDEFAULT 16 #elif !defined(PETSC_HAVE_FORTRAN_UNDERSCORE) 17 #define tssetrhsfunction_ tssetrhsfunction 18 #define tssetmatrices_ tssetmatrices 19 #define tsgetmatrices_ tsgetmatrices 20 #define tssetrhsjacobian_ tssetrhsjacobian 21 #define tsgetrhsjacobian_ tsgetrhsjacobian 22 #define tsview_ tsview 23 #define tsgetoptionsprefix_ tsgetoptionsprefix 24 #define tsmonitorset_ tsmonitorset 25 #define tsdefaultcomputejacobian_ tsdefaultcomputejacobian 26 #define tsdefaultcomputejacobiancolor_ tsdefaultcomputejacobiancolor 27 #define tsmonitordefault_ tsmonitordefault 28 #endif 29 30 static PetscErrorCode ourtsfunction(TS ts,PetscReal d,Vec x,Vec f,void *ctx) 31 { 32 PetscErrorCode ierr = 0; 33 (*(void (PETSC_STDCALL *)(TS*,PetscReal*,Vec*,Vec*,void*,PetscErrorCode*))(((PetscObject)ts)->fortran_func_pointers[1]))(&ts,&d,&x,&f,ctx,&ierr); 34 return 0; 35 } 36 static PetscErrorCode ourtsmatrix(TS ts,PetscReal d,Mat* m,Mat* p,MatStructure* type,void*ctx) 37 { 38 PetscErrorCode ierr = 0; 39 (*(void (PETSC_STDCALL *)(TS*,PetscReal*,Mat*,Mat*,MatStructure*,void*,PetscErrorCode*))(((PetscObject)ts)->fortran_func_pointers[2]))(&ts,&d,m,p,type,ctx,&ierr); 40 return 0; 41 } 42 static PetscErrorCode ourtslhsmatrix(TS ts,PetscReal d,Mat* m,Mat* p,MatStructure* type,void*ctx) 43 { 44 PetscErrorCode ierr = 0; 45 (*(void (PETSC_STDCALL *)(TS*,PetscReal*,Mat*,Mat*,MatStructure*,void*,PetscErrorCode*))(((PetscObject)ts)->fortran_func_pointers[7]))(&ts,&d,m,p,type,ctx,&ierr); 46 return 0; 47 } 48 static PetscErrorCode ourtsjacobian(TS ts,PetscReal d,Vec x,Mat* m,Mat* p,MatStructure* type,void*ctx) 49 { 50 PetscErrorCode ierr = 0; 51 (*(void (PETSC_STDCALL *)(TS*,PetscReal*,Vec*,Mat*,Mat*,MatStructure*,void*,PetscErrorCode*))(((PetscObject)ts)->fortran_func_pointers[3]))(&ts,&d,&x,m,p,type,ctx,&ierr); 52 return 0; 53 } 54 55 static PetscErrorCode ourmonitordestroy(void **ctx) 56 { 57 PetscErrorCode ierr = 0; 58 TS ts = *(TS*)ctx; 59 void *mctx = (void*) ((PetscObject)ts)->fortran_func_pointers[6]; 60 (*(void (PETSC_STDCALL *)(void*,PetscErrorCode*))(((PetscObject)ts)->fortran_func_pointers[5]))(mctx,&ierr); 61 return 0; 62 } 63 64 /* 65 Note ctx is the same as ts so we need to get the Fortran context out of the TS 66 */ 67 static PetscErrorCode ourtsmonitor(TS ts,PetscInt i,PetscReal d,Vec v,void*ctx) 68 { 69 PetscErrorCode ierr = 0; 70 void *mctx = (void*) ((PetscObject)ts)->fortran_func_pointers[6]; 71 (*(void (PETSC_STDCALL *)(TS*,PetscInt*,PetscReal*,Vec*,void*,PetscErrorCode*))(((PetscObject)ts)->fortran_func_pointers[4]))(&ts,&i,&d,&v,mctx,&ierr); 72 return 0; 73 } 74 75 EXTERN_C_BEGIN 76 77 void PETSC_STDCALL tssetrhsfunction_(TS *ts,PetscErrorCode (PETSC_STDCALL *f)(TS*,PetscReal*,Vec*,Vec*,void*,PetscErrorCode*),void*fP,PetscErrorCode *ierr) 78 { 79 PetscObjectAllocateFortranPointers(*ts,8); 80 ((PetscObject)*ts)->fortran_func_pointers[1] = (PetscVoidFunction)f; 81 *ierr = TSSetRHSFunction(*ts,ourtsfunction,fP); 82 } 83 84 void PETSC_STDCALL tssetmatrices_(TS *ts,Mat *Arhs,PetscErrorCode (PETSC_STDCALL *frhs)(TS*,PetscReal*,Mat*,Mat*,MatStructure*, 85 void*,PetscInt *), 86 Mat *Alhs,PetscErrorCode (PETSC_STDCALL *flhs)(TS*,PetscReal*,Mat*,Mat*,MatStructure*, 87 void*,PetscInt *), 88 MatStructure *flag,void*fP,PetscErrorCode *ierr) 89 { 90 PetscObjectAllocateFortranPointers(*ts,8); 91 if (FORTRANNULLFUNCTION(frhs) && FORTRANNULLFUNCTION(flhs)) { 92 *ierr = TSSetMatrices(*ts,*Arhs,PETSC_NULL,*Alhs,PETSC_NULL,*flag,fP); 93 } else if (FORTRANNULLFUNCTION(flhs)){ 94 ((PetscObject)*ts)->fortran_func_pointers[2] = (PetscVoidFunction)frhs; 95 *ierr = TSSetMatrices(*ts,*Arhs,ourtsmatrix,*Alhs,PETSC_NULL,*flag,fP); 96 } else if (FORTRANNULLFUNCTION(frhs)){ 97 ((PetscObject)*ts)->fortran_func_pointers[7] = (PetscVoidFunction)flhs; 98 *ierr = TSSetMatrices(*ts,*Arhs,PETSC_NULL,*Alhs,ourtslhsmatrix,*flag,fP); 99 } else { 100 ((PetscObject)*ts)->fortran_func_pointers[2] = (PetscVoidFunction)frhs; 101 ((PetscObject)*ts)->fortran_func_pointers[7] = (PetscVoidFunction)flhs; 102 *ierr = TSSetMatrices(*ts,*Arhs,ourtsmatrix,*Alhs,ourtslhsmatrix,*flag,fP); 103 } 104 } 105 106 /* ---------------------------------------------------------*/ 107 extern void tsdefaultcomputejacobian_(TS*,PetscReal*,Vec*,Mat*,Mat*,MatStructure*,void*,PetscErrorCode*); 108 extern void tsdefaultcomputejacobiancolor_(TS*,PetscReal*,Vec*,Mat*,Mat*,MatStructure*,void*,PetscErrorCode*); 109 110 void PETSC_STDCALL tssetrhsjacobian_(TS *ts,Mat *A,Mat *B,void (PETSC_STDCALL *f)(TS*,PetscReal*,Vec*,Mat*,Mat*,MatStructure*, 111 void*,PetscErrorCode*),void*fP,PetscErrorCode *ierr) 112 { 113 PetscObjectAllocateFortranPointers(*ts,8); 114 if (FORTRANNULLFUNCTION(f)) { 115 *ierr = TSSetRHSJacobian(*ts,*A,*B,PETSC_NULL,fP); 116 } else if ((PetscVoidFunction)f == (PetscVoidFunction)tsdefaultcomputejacobian_) { 117 *ierr = TSSetRHSJacobian(*ts,*A,*B,TSDefaultComputeJacobian,fP); 118 } else if ((PetscVoidFunction)f == (PetscVoidFunction)tsdefaultcomputejacobiancolor_) { 119 *ierr = TSSetRHSJacobian(*ts,*A,*B,TSDefaultComputeJacobianColor,*(MatFDColoring*)fP); 120 } else { 121 ((PetscObject)*ts)->fortran_func_pointers[3] = (PetscVoidFunction)f; 122 *ierr = TSSetRHSJacobian(*ts,*A,*B,ourtsjacobian,fP); 123 } 124 } 125 126 /* ---------------------------------------------------------*/ 127 128 extern void PETSC_STDCALL tsmonitordefault_(TS*,PetscInt*,PetscReal*,Vec*,void*,PetscErrorCode*); 129 130 void PETSC_STDCALL tsmonitorset_(TS *ts,void (PETSC_STDCALL *func)(TS*,PetscInt*,PetscReal*,Vec*,void*,PetscErrorCode*),void (*mctx)(void),void (PETSC_STDCALL *d)(void*,PetscErrorCode*),PetscErrorCode *ierr) 131 { 132 PetscObjectAllocateFortranPointers(*ts,8); 133 if ((PetscVoidFunction)func == (PetscVoidFunction)tsmonitordefault_) { 134 *ierr = TSMonitorSet(*ts,TSMonitorDefault,0,0); 135 } else { 136 ((PetscObject)*ts)->fortran_func_pointers[4] = (PetscVoidFunction)func; 137 ((PetscObject)*ts)->fortran_func_pointers[5] = (PetscVoidFunction)d; 138 ((PetscObject)*ts)->fortran_func_pointers[6] = (PetscVoidFunction)mctx; 139 if (FORTRANNULLFUNCTION(d)) { 140 *ierr = TSMonitorSet(*ts,ourtsmonitor,*ts,0); 141 } else { 142 *ierr = TSMonitorSet(*ts,ourtsmonitor,*ts,ourmonitordestroy); 143 } 144 } 145 } 146 147 /* ---------------------------------------------------------*/ 148 void PETSC_STDCALL tsgetrhsjacobian_(TS *ts,Mat *J,Mat *M,void **ctx,PetscErrorCode *ierr) 149 { 150 *ierr = TSGetRHSJacobian(*ts,J,M,ctx); 151 } 152 153 void PETSC_STDCALL tsgetmatrices_(TS *ts,Mat *Arhs,Mat *Alhs,void **ctx,PetscErrorCode *ierr) 154 { 155 *ierr = TSGetMatrices(*ts,Arhs,Alhs,ctx); 156 } 157 158 void PETSC_STDCALL tsview_(TS *ts,PetscViewer *viewer, PetscErrorCode *ierr) 159 { 160 PetscViewer v; 161 PetscPatchDefaultViewers_Fortran(viewer,v); 162 *ierr = TSView(*ts,v); 163 } 164 165 void PETSC_STDCALL tsgetoptionsprefix_(TS *ts,CHAR prefix PETSC_MIXED_LEN(len),PetscErrorCode *ierr PETSC_END_LEN(len)) 166 { 167 const char *tname; 168 169 *ierr = TSGetOptionsPrefix(*ts,&tname); 170 *ierr = PetscStrncpy(prefix,tname,len); 171 } 172 173 174 EXTERN_C_END 175