Main Page | Directories | File List | File Members

define_d_base_K.h

Go to the documentation of this file.
00001 /*
00002    This file belongs to Aeneas. Aeneas is a GNU package released under GPL 3 license.
00003    This code is a simulator for Submicron 3D Semiconductor Devices. 
00004    It implements the Monte Carlo transport in 3D tetrahedra meshes
00005    for the simulation of the semiclassical Boltzmann equation for both electrons.
00006    It also includes all the relevant quantum effects for nanodevices.
00007 
00008    Copyright (C) 2007 Jean Michel Sellier <sellier@dmi.unict.it>
00009  
00010    This program is free software; you can redistribute it and/or modify
00011    it under the terms of the GNU General Public License as published by
00012    the Free Software Foundation; either version 3, or (at your option)
00013    any later version.
00014 
00015    This program is distributed in the hope that it will be useful,
00016    but WITHOUT ANY WARRANTY; without even the implied warranty of
00017    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018    GNU General Public License for more details.
00019 
00020    You should have received a copy of the GNU General Public License
00021    along with this program. If not, see <http://www.gnu.org/licenses/>.
00022 */
00023 
00024 // Created on : 06 june 2007, Siracusa, Jean Michel Sellier
00025 // Last modified : 16 august 2007, Siracusa, Jean Michel Sellier
00026 
00027 // define the vector ****d_base_K. see pag.323 par.9.2.5 of french book
00028 
00029 void define_d_base_K(void)
00030 {
00031  int k,n,m;
00032  
00033 // reset the array
00034 // memset(&d_base_K,0,sizeof(d_base_K));
00035  for(k=0;k<dim;k++)
00036   for(n=0;n<nf;n++)
00037     for(m=0;m<Ne;m++)
00038      d_base_K[k][n][m]=0.0;
00039      
00040 // compute the various components of the array
00041  for(k=0;k<dim;k++)
00042   for(n=0;n<nf;n++)
00043    for(m=0;m<Ne;m++){
00044     int k2;
00045     for(k2=0;k2<dim;k2++) d_base_K[k][n][m]+=d_base_ref[k2][n]*inv_jac_K[k2][k][m];
00046    }
00047 /* for(k=0;k<dim;k++)
00048   for(n=0;n<nf;n++)
00049    for(l=0;l<lg;l++)
00050     for(m=0;m<Ne;m++) printf("d_base_K[%d][%d][%d][%d]= %g\n",k,n,l,m,d_base_K[k][n][l][m]);
00051 */
00052  printf("components of derivatives of shape functions computed...\n");
00053 }
00054 

© sourcejam.com 2005-2008