Started on implementation of BEM

This commit is contained in:
Anne de Jong 2018-02-09 11:57:11 +01:00 committed by asceenl
parent 89e9622b1f
commit 10b7ba60f8
1 changed files with 20 additions and 0 deletions

20
beamforming/c/bem.c Normal file
View File

@ -0,0 +1,20 @@
// 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) {
}
//////////////////////////////////////////////////////////////////////