21 lines
355 B
C
21 lines
355 B
C
// bem.c
|
|
//
|
|
// Author: J.A. de Jong -ASCEE
|
|
//
|
|
// Description:
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
#include "types.h"
|
|
|
|
typedef struct {
|
|
umat elem;
|
|
vd nodes;
|
|
ElemType elemtype;
|
|
} BemMesh;
|
|
|
|
int Ms_osc_free(BemMesh* mesh,cmat* Ms) {
|
|
|
|
|
|
}
|
|
//////////////////////////////////////////////////////////////////////
|