EIDORS: Electrical Impedance Tomography and Diffuse Optical Tomography Reconstruction Software |
EIDORS
(mirror) Main Documentation Tutorials − Image Reconst − Data Structures − Applications − FEM Modelling − GREIT − Old tutorials − Workshop Download Contrib Data GREIT Browse Docs Browse SVN News Mailing list (archive) FAQ Developer
|
FEM Models Prepackaged with EIDORSEIDORS provides a number of prepackaged FEM models that can be used to easily set up common tasks. The main function to make these available is mk_common_models.2D FEM ModelsUsing mk_common_models, the basic function is a string such as 'c2d0c', where
% Distmesh models $Id: common_models01.m 2161 2010-04-04 20:33:46Z aadler $ imdl=mk_common_model('c2d0c',14); show_fem(imdl.fwd_model,[0,1]); print_convert('common_models01a.png','-density 60'); imdl=mk_common_model('d2d3c',9); show_fem(imdl.fwd_model,[0,1]); print_convert('common_models01b.png','-density 60');
% Distmesh models $Id: common_models02.m 2161 2010-04-04 20:33:46Z aadler $ % Distmesh models with fixed electode nodes imdl=mk_common_model('c2d0d',14); show_fem(imdl.fwd_model,[0,1]); print_convert('common_models02a.png','-density 60'); imdl=mk_common_model('d2d3d',9); show_fem(imdl.fwd_model,[0,1]); print_convert('common_models02b.png','-density 60');
% Distmesh models $Id: common_models03.m 2161 2010-04-04 20:33:46Z aadler $ imdl=mk_common_model('c2C1',16); show_fem(imdl.fwd_model,[0,1]); print_convert('common_models03a.png','-density 60'); imdl=mk_common_model('d2t3',16); show_fem(imdl.fwd_model,[0,1]); print_convert('common_models03b.png','-density 60');Come rough 2D models of thorax shapes are available as x2tx and as x2Tx and models
% Distmesh models $Id: common_models04.m 3886 2013-04-18 10:05:56Z aadler $ models = {'a2c2', 'a2d0c', 'a2d1c', 'a2d2c', 'a2d4c', ... 'b2c2', 'b2d0c', 'b2d1c', 'b2d2c', 'b2d4c', ... 'c2c2', 'c2d0c', 'c2d1c', 'c2d2c', 'c2d4c', ... 'd2c2', 'd2d0c', 'd2d1c', 'd2d2c', 'd2d4c', ... 'e2c2', 'e2d0c', 'e2d1c', 'e2d2c', 'e2d4c', ... 'f2c2', 'f2d0c', 'f2d1c', 'f2d2c', 'f2d4c', ... 'g2c2', 'g2d0c', 'g2d1c', 'g2d2c', 'g2d4c', ... 'h2c2', 'h2d0c', 'h2d1c', 'h2d2c', 'h2d4c', ... 'i2c2', 'i2d0c', 'i2d1c', 'i2d2c', 'i2d4c', ... 'j2c2', 'j2d0c', 'j2d1c', 'j2d2c', 'j2d4c'}; for i= 1:length(models); imdl=mk_common_model(models{i},8); clf; show_fem(imdl.fwd_model); axis image axis([0,1.05,-0.15,0.15]); print_convert(sprintf('common_models04_%s.png',models{i}), '-density 50'); end
Figure: Overview of models available from mk_common_model |
Last Modified: $Date: 2017-02-28 13:12:08 -0500 (Tue, 28 Feb 2017) $ by $Author: aadler $