I/O data format for 2D Unsteady Heat Conduction Analysis

Size: px
Start display at page:

Download "I/O data format for 2D Unsteady Heat Conduction Analysis"

Transcription

1 December 2, 2012 I/O data format for 2D Unsteady Heat Conduction Analysis (f90 FEM HEAT.f90) 1. Outline of a program f90 FEM HEAT.f90 This is a program for 2D Unsteady Heat Conduction Analysis. This program can not treat steady problem. Thickness of the element is unit thickness and it is not changeable. As boundary conditions, thermal insulation boundary, temperature given boundary and heat transfer boundary can be considered. Heating material can also be used such as cement concrete. 4 node isoparametric element with 4 Gauss points is used. 1 node has 1 degree of freedom of temperature. In coordinate system, x-direction is defined as right-direction and y-direction is defined as upward direction. Property of heat conduction is isotropic in x and y-directions. Simultaneous linear equations are solved using Cholesky method for banded matrix. Although this solving process has repeating process for time history analysis, matrix for calculation is not changed if the time increment is not changed. Therefore, to create the triangular matrix is carried out only one time, and forward elimination and backward substitution process are repeated during the defined time span. Crank-Nicolson method is used for the discretization of the time. Input/Output file name can be defined arbitrarily with the format of csv and those are inputted from command line of MS-Windows. In addition, it is necessary to prepare the input file for time history of node temperatures of given temperature boundary and side temperatures of heat transfer boundary. Used language for program is Fortran 90 and used compiler is MinGW gfortran. 2. Format of input data file ( csv format) 2 files shown below are required for this analysis. 1 2 Basic data file for input (specified in the batch file) Temperature time history data (specified at second row in the basic data file) 2.1 Basic data Items for input s data file name for temperature time history NODT,NELT,MATEL,KOT,KOC,delta Ak,Ac,Arho,Tk,Al...(1 MATEL)... node-1,node-2,node-3,node-4,matno...(1 NELT)... x,y,t 0...(1 NODT)... nokt...(1 KOT)... nekc 1,nekc 2,alphac...(1 KOC)... nout noout 1...(1 line input)... ntout nntout 1...(1 line input)... Remarks Save in the same directory as basic data file Basic values for analysis Material properties Element connectivity, Material set number (counterclockwise order of node numbers) Coordinates of node, initial temperature of node (x: right-direction, y: upward direction) Node number of temperature given boundary (Omit data input if KOT=0) Element number, node number defined side, heat transfer rate (Omit data input if KOC=0) Number of nodes for output of temperature time history Node number for above frequency of output of temperatures of all nodes Time step number for above (Omit data input if ntout=0) 1

2 NODT : Number of nodes Ak : heat conductivity coefficient of element NELT : Number of elements Ac : Specific heat of element MATEL : Number of material sets Arho : Unit weight of element KOT : Number of temperature given nodes Tk : maximum temperature rise of element KOC : Number of heat transfer sides Al : coefficient of heat release rate of element delta : Time increment alphac : heat transfer rate of side of element matno : Material set number Explanation for heating material Properties of heating materials are inputted as element material characteristics. In this program, heat generation of cement concrete is imitated and the adiabatic temperature rise shown below formula can be considered. T = K (1 e α t ) where, T : adiabatic temperature rise, K: maximum temperature rise, α: coefficient of heat release rate, t: time. In this program, K (Tk) and α(al) become input data and heat generation rate per unit area is calculated in calculation process. Explanation for heat transfer boundary Following items are inputted for defining the heat transfer boundary Element number with heat transfer boundary Node number which define the side in the element Heat transfer rate of the side in the element Although a side of element is consisted of 2 nodes, first node number must be inputted as the node number which define the side in the element. Because node number is defined in counterclockwise order in FEM, if first node number can be known, the side can be identified. Explanation for output of temperature time history at specified nodes Number of nodes for output of time history is specified as variable nout. Node numbers for output of time history are specified as array variable nout(). nout must be greater than or equal to 1, and array nout() must be defined with specified number by nout. Explanation for output of temperatures of all nodes at specified time Frequency for output of temperatures of all nodes is specified as variable ntout. Time step numbers for output of temperature of all nodes are specified as array variable nntout(). In the case of ntout=0, data input of array variable nntout can be omitted. 2.2 Temperature time history data Items for input Remarks 1,TE(1),...,TE(KOT),TC(1),...,TC(KOC) data of 1st time step 2,TE(1),...,TE(KOT),TC(1),...,TC(KOC) data of 2nd time step 3,TE(1),...,TE(KOT),TC(1),...,TC(KOC)...(repeating until end time)... data is read step by step itime,te(1),...,te(kot),tc(1),...,tc(koc) TE(): temperature of node for temperature given boundary TC(): outer temperature of side of element for heat transfer boundary Values from 1st step to final step should be written in data file. Number of step (variable name itime ) is defined by reading the final row of this file. Initial temperatures are the values written in basic data file. It is required to prepare this file even if temperatures are not required such as the case of adiabatic temperature raise. In that case, only step number is required in this file. This is a measure to know step number of calculation. 2

3 3. Format of out put file ( csv format) Items of output NODT,NELT,MATEL,KOT,KOC,delta,nout,ntout,itmax NODT: Number of nodes, NELT: Number of elements, MATEL: Number of material set KOT: Number of temperature given nodes, KOC: Number of heat transfer sides delta: time increment nout: Number of nodes for output of temperature time history ntout: frequency of output for temperatures of all nodes itmax: Number of steps of time history *node characteristics node,x,y,fix-t,tinit node : Node number x,y : Coordinates of node Tini : initial temperature of node fix : Temperature given boundary (1: yes, 0: no)...(1 NODT)... *element characteristics element,node-1,node-2,node-3,node-4,alpc1,alpc2,alpc3,alpc4,ak,ac,arho,tk,al,matno element : Element number node-1,node-2,node-3,node-4 : Element-nodes relationship alpc1 alpc4 : heat transfer rate of sides Ak : Heat conductivity coefficient of element Ac : Specific heat of element Arho : Unit weight of element Tk : Maximum temperature raise of element Al : coefficient of heat release rate of element matno : material set number...(1 NELT)... *Temperature records of selected nodes it,time,node-xx,node-xx,...(1 nout)... step,time, temperature of node...(0 itmax)... (if ntout is greater than or equal to 1) *Temperature of all nodes for selected times Node,initial,step-xx,step-xx,...(1 ntout)... Node number, temperature of node initial means initial temperature of each node...(1 NODT)... *Temperature distributions of selected nodes Node,x,y,initial,step-xx,step-xx,...(1 ntout)... Node number, x-coordinate, y-coordinate, temperature of node initial means initial temperature of each node...(1 nout)... (common items) NODT=xxx nt=xx mm=xx ib=xx Calculation time= x.xxx(sec) Date time= :33:8 (gfortran) 3

4 4. Sample model analysis 4.1 Outline of model Consider a square area with a side of 1m. Material properties are such as cement concrete Size of area Width Height=1 m 1 m Heat conductivity coefficient 2.5 kcal/m h C Specific heat 0.28 kcal/kg C Unit weight 2350 kg/m 3 Heat transfer rate 10 kcal/m 2 h C Formula for T = K (1 e α t ) adiabatic temperature raise K=20 C, α=0.3, t: hour(h) Model size 25 nodes, 16 elements y distance (m) Sample input data (1) Input of basic data x distance (m) Adiabatic-3 t_test00_3.csv File name of temperature time history 25,16,1,0,16,1 NODT,NELT,MATEL,KOT,KOC,delta 2.5,0.28,2350,20,0.3 Ak,Ac,Arho,Tk,Al 1, 6, 7, 2,1 Element-nodes relationship for element No.1 2, 7, 8, 3,1 Element-nodes relationship for element No.2 3, 8, 9, 4,1 Element-nodes relationship for element No.3 4, 9,10, 5,1 Element-nodes relationship for element No.4 6,11,12, 7,1 Element-nodes relationship for element No.5 7,12,13, 8,1 Element-nodes relationship for element No.6 8,13,14, 9,1 Element-nodes relationship for element No.7 9,14,15,10,1 Element-nodes relationship for element No.8 11,16,17,12,1 Element-nodes relationship for element No.9 12,17,18,13,1 Element-nodes relationship for element No.10 13,18,19,14,1 Element-nodes relationship for element No.11 14,19,20,15,1 Element-nodes relationship for element No.12 16,21,22,17,1 Element-nodes relationship for element No.13 17,22,23,18,1 Element-nodes relationship for element No.14 18,23,24,19,1 Element-nodes relationship for element No.15 19,24,25,20,1 Element-nodes relationship for element No ,-0.50,20 Node coordinate and initial temperature of node No ,-0.25,20 Node coordinate and initial temperature of node No , 0.00,20 Node coordinate and initial temperature of node No , 0.25,20 Node coordinate and initial temperature of node No , 0.50,20 Node coordinate and initial temperature of node No ,-0.50,20 Node coordinate and initial temperature of node No ,-0.25,20 Node coordinate and initial temperature of node No , 0.00,20 Node coordinate and initial temperature of node No , 0.25,20 Node coordinate and initial temperature of node No , 0.50,20 Node coordinate and initial temperature of node No ,-0.50,20 Node coordinate and initial temperature of node No ,-0.25,20 Node coordinate and initial temperature of node No , 0.00,20 Node coordinate and initial temperature of node No , 0.25,20 Node coordinate and initial temperature of node No , 0.50,20 Node coordinate and initial temperature of node No ,-0.50,20 Node coordinate and initial temperature of node No ,-0.25,20 Node coordinate and initial temperature of node No , 0.00,20 Node coordinate and initial temperature of node No , 0.25,20 Node coordinate and initial temperature of node No , 0.50,20 Node coordinate and initial temperature of node No ,-0.50,20 Node coordinate and initial temperature of node No ,-0.25,20 Node coordinate and initial temperature of node No , 0.00,20 Node coordinate and initial temperature of node No , 0.25,20 Node coordinate and initial temperature of node No , 0.50,20 Node coordinate and initial temperature of node No.25 1, 1,10 Element No. of heat transfer boundary( 1), node No. of side( 1), heat transfer rate 4

5 5, 6,10 Element No. of heat transfer boundary( 5), node No. of side( 6), heat transfer rate 9,11,10 Element No. of heat transfer boundary( 9), node No. of side(11), heat transfer rate 13,16,10 Element No. of heat transfer boundary(13), node No. of side(16), heat transfer rate 13,21,10 Element No. of heat transfer boundary(13), node No. of side(21), heat transfer rate 14,22,10 Element No. of heat transfer boundary(14), node No. of side(22), heat transfer rate 15,23,10 Element No. of heat transfer boundary(15), node No. of side(23), heat transfer rate 16,24,10 Element No. of heat transfer boundary(16), node No. of side(24), heat transfer rate 16,25,10 Element No. of heat transfer boundary(16), node No. of side(25), heat transfer rate 12,20,10 Element No. of heat transfer boundary(12), node No. of side(20), heat transfer rate 8,15,10 Element No. of heat transfer boundary( 8), node No. of side(15), heat transfer rate 4,10,10 Element No. of heat transfer boundary( 4), node No. of side(10), heat transfer rate 4, 5,10 Element No. of heat transfer boundary( 4), node No. of side( 5), heat transfer rate 3, 4,10 Element No. of heat transfer boundary( 3), node No. of side( 4), heat transfer rate 2, 3,10 Element No. of heat transfer boundary( 2), node No. of side( 3), heat transfer rate 1, 2,10 Element No. of heat transfer boundary( 1), node No. of side( 2), heat transfer rate 5 Number of nodes for output of temperature time history 1,21,25,5,13 Node numbers for output of temperature time history 0 Number of time for output of temperatures of all nodes 5

6 (2) Input file of temperature time history t test00 3.csv Component of file is shown below. 1st column step number 2nd 17th column temperature time histories of 16 sides which is specified as heat transfer boundary In this case, all sides have the same temperature at all steps because of constant temperature condition of outer domain. Temperatures 1,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 2,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 3,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 4,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 5,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 6,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 7,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 8,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 9,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 10,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 11,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 12,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 13,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 14,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 15,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 16,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 17,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 18,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 19,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 21,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 22,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 23,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 24,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 25,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 26,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 27,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 28,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 29,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 30,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 31,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 32,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 33,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 34,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 35,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 36,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 37,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 38,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 39,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 40,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 41,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 42,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 43,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 44,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 45,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 46,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 47,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 48,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 49,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 50,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20,20 6

7 4.3 sample output data Output data sample is shown below. The significant figure is set to 3 due to space arrangement. *Temperature records of selected nodes it, time, node-1, node-21, node-25, node-5, node-13 0,0.000E+00,2.000E+01,2.000E+01,2.000E+01,2.000E+01,2.000E+01 1,1.000E+00,2.442E+01,2.442E+01,2.442E+01,2.442E+01,2.516E+01 2,2.000E+00,2.649E+01,2.649E+01,2.649E+01,2.649E+01,2.896E+01 3,3.000E+00,2.741E+01,2.741E+01,2.741E+01,2.741E+01,3.189E+01 4,4.000E+00,2.771E+01,2.771E+01,2.771E+01,2.771E+01,3.417E+01 5,5.000E+00,2.767E+01,2.767E+01,2.767E+01,2.767E+01,3.592E+01 6,6.000E+00,2.746E+01,2.746E+01,2.746E+01,2.746E+01,3.723E+01 7,7.000E+00,2.715E+01,2.715E+01,2.715E+01,2.715E+01,3.818E+01 8,8.000E+00,2.680E+01,2.680E+01,2.680E+01,2.680E+01,3.881E+01 9,9.000E+00,2.644E+01,2.644E+01,2.644E+01,2.644E+01,3.919E+01 10,1.000E+01,2.610E+01,2.610E+01,2.610E+01,2.610E+01,3.936E+01 11,1.100E+01,2.577E+01,2.577E+01,2.577E+01,2.577E+01,3.935E+01 12,1.200E+01,2.547E+01,2.547E+01,2.547E+01,2.547E+01,3.921E+01 13,1.300E+01,2.519E+01,2.519E+01,2.519E+01,2.519E+01,3.897E+01 14,1.400E+01,2.493E+01,2.493E+01,2.493E+01,2.493E+01,3.865E+01 15,1.500E+01,2.469E+01,2.469E+01,2.469E+01,2.469E+01,3.826E+01 16,1.600E+01,2.447E+01,2.447E+01,2.447E+01,2.447E+01,3.783E+01 17,1.700E+01,2.427E+01,2.427E+01,2.427E+01,2.427E+01,3.737E+01 18,1.800E+01,2.408E+01,2.408E+01,2.408E+01,2.408E+01,3.689E+01 19,1.900E+01,2.391E+01,2.391E+01,2.391E+01,2.391E+01,3.639E+01 20,2.000E+01,2.375E+01,2.375E+01,2.375E+01,2.375E+01,3.590E+01 21,2.100E+01,2.360E+01,2.360E+01,2.360E+01,2.360E+01,3.540E+01 22,2.200E+01,2.346E+01,2.346E+01,2.346E+01,2.346E+01,3.490E+01 23,2.300E+01,2.332E+01,2.332E+01,2.332E+01,2.332E+01,3.441E+01 24,2.400E+01,2.319E+01,2.319E+01,2.319E+01,2.319E+01,3.393E+01 25,2.500E+01,2.307E+01,2.307E+01,2.307E+01,2.307E+01,3.346E+01 26,2.600E+01,2.296E+01,2.296E+01,2.296E+01,2.296E+01,3.300E+01 27,2.700E+01,2.285E+01,2.285E+01,2.285E+01,2.285E+01,3.255E+01 28,2.800E+01,2.275E+01,2.275E+01,2.275E+01,2.275E+01,3.212E+01 29,2.900E+01,2.265E+01,2.265E+01,2.265E+01,2.265E+01,3.170E+01 30,3.000E+01,2.255E+01,2.255E+01,2.255E+01,2.255E+01,3.129E+01 31,3.100E+01,2.246E+01,2.246E+01,2.246E+01,2.246E+01,3.089E+01 32,3.200E+01,2.237E+01,2.237E+01,2.237E+01,2.237E+01,3.051E+01 33,3.300E+01,2.228E+01,2.228E+01,2.228E+01,2.228E+01,3.014E+01 34,3.400E+01,2.220E+01,2.220E+01,2.220E+01,2.220E+01,2.978E+01 35,3.500E+01,2.212E+01,2.212E+01,2.212E+01,2.212E+01,2.944E+01 36,3.600E+01,2.205E+01,2.205E+01,2.205E+01,2.205E+01,2.910E+01 37,3.700E+01,2.197E+01,2.197E+01,2.197E+01,2.197E+01,2.878E+01 38,3.800E+01,2.190E+01,2.190E+01,2.190E+01,2.190E+01,2.847E+01 39,3.900E+01,2.184E+01,2.184E+01,2.184E+01,2.184E+01,2.817E+01 40,4.000E+01,2.177E+01,2.177E+01,2.177E+01,2.177E+01,2.788E+01 41,4.100E+01,2.171E+01,2.171E+01,2.171E+01,2.171E+01,2.760E+01 42,4.200E+01,2.165E+01,2.165E+01,2.165E+01,2.165E+01,2.733E+01 43,4.300E+01,2.159E+01,2.159E+01,2.159E+01,2.159E+01,2.707E+01 44,4.400E+01,2.153E+01,2.153E+01,2.153E+01,2.153E+01,2.682E+01 45,4.500E+01,2.148E+01,2.148E+01,2.148E+01,2.148E+01,2.658E+01 46,4.600E+01,2.143E+01,2.143E+01,2.143E+01,2.143E+01,2.635E+01 47,4.700E+01,2.138E+01,2.138E+01,2.138E+01,2.138E+01,2.612E+01 48,4.800E+01,2.133E+01,2.133E+01,2.133E+01,2.133E+01,2.590E+01 49,4.900E+01,2.128E+01,2.128E+01,2.128E+01,2.128E+01,2.569E+01 50,5.000E+01,2.123E+01,2.123E+01,2.123E+01,2.123E+01,2.549E+01 NODT=25 nt=25 mm=25 ib=7 Calculation time= 0.023(sec) Date_time= _7:52:16_(gfortran) 7

I/O format for 2D Steady Seepage Flow Analysis

I/O format for 2D Steady Seepage Flow Analysis I/O format for 2D Steady Seepage Flow Analysis (f90 FEM SEEP.f90) December 2, 2012 1. Outline of a program f90 FEM SEEP.f90 This is a program for 2D Steady Seepage Flow Analysis. This program can not treat

More information

Middle East Technical University Mechanical Engineering Department ME 413 Introduction to Finite Element Analysis Spring 2015 (Dr.

Middle East Technical University Mechanical Engineering Department ME 413 Introduction to Finite Element Analysis Spring 2015 (Dr. Middle East Technical University Mechanical Engineering Department ME 413 Introduction to Finite Element Analysis Spring 2015 (Dr. Sert) COMSOL 1 Tutorial 2 Problem Definition Hot combustion gases of a

More information

f xx + f yy = F (x, y)

f xx + f yy = F (x, y) Application of the 2D finite element method to Laplace (Poisson) equation; f xx + f yy = F (x, y) M. R. Hadizadeh Computer Club, Department of Physics and Astronomy, Ohio University 4 Nov. 2013 Domain

More information

Set No. 1 IV B.Tech. I Semester Regular Examinations, November 2010 FINITE ELEMENT METHODS (Mechanical Engineering) Time: 3 Hours Max Marks: 80 Answer any FIVE Questions All Questions carry equal marks

More information

Problem description. Internal heat generation. (kj/hr-m**3) Time (hr) Problem 25: Heat transfer from solidifying concrete blocks.

Problem description. Internal heat generation. (kj/hr-m**3) Time (hr) Problem 25: Heat transfer from solidifying concrete blocks. Problem description During a twelve day period, concrete is added to a hole previously drilled into rock. At the beginning of each 4 day interval, a meter depth of concrete is poured. As the concrete solidifies,

More information

Sami Ilvonen Pekka Manninen. Introduction to High-Performance Computing with Fortran. September 19 20, 2016 CSC IT Center for Science Ltd, Espoo

Sami Ilvonen Pekka Manninen. Introduction to High-Performance Computing with Fortran. September 19 20, 2016 CSC IT Center for Science Ltd, Espoo Sami Ilvonen Pekka Manninen Introduction to High-Performance Computing with Fortran September 19 20, 2016 CSC IT Center for Science Ltd, Espoo All material (C) 2009-2016 by CSC IT Center for Science Ltd.

More information

1. Answer: x or x. Explanation Set up the two equations, then solve each equation. x. Check

1. Answer: x or x. Explanation Set up the two equations, then solve each equation. x. Check Thinkwell s Placement Test 5 Answer Key If you answered 7 or more Test 5 questions correctly, we recommend Thinkwell's Algebra. If you answered fewer than 7 Test 5 questions correctly, we recommend Thinkwell's

More information

Final project: Design problem

Final project: Design problem ME309 Homework #5 Final project: Design problem Select one of the analysis problems listed below to solve. Your solution, along with a description of your analysis process, should be handed in as a final

More information

Matrix Inverse 2 ( 2) 1 = 2 1 2

Matrix Inverse 2 ( 2) 1 = 2 1 2 Name: Matrix Inverse For Scalars, we have what is called a multiplicative identity. This means that if we have a scalar number, call it r, then r multiplied by the multiplicative identity equals r. Without

More information

Problem description. Problem 65: Free convection in a lightbulb. Filament (Tungsten): Globe (Glass): = FSI boundary. Gas (Argon):

Problem description. Problem 65: Free convection in a lightbulb. Filament (Tungsten): Globe (Glass): = FSI boundary. Gas (Argon): Problem description This tutorial demonstrates the use of ADINA for analyzing the fluid flow and heat transfer in a lightbulb using the Thermal Fluid-Structure Interaction (TFSI) features of ADINA. The

More information

Beams. Lesson Objectives:

Beams. Lesson Objectives: Beams Lesson Objectives: 1) Derive the member local stiffness values for two-dimensional beam members. 2) Assemble the local stiffness matrix into global coordinates. 3) Assemble the structural stiffness

More information

An automatic simulation tool for thermal analysis of gravity dams by BFM

An automatic simulation tool for thermal analysis of gravity dams by BFM Boundary Elements and Other Mesh Reduction Methods XXXVI 491 An automatic simulation tool for thermal analysis of gravity dams by BFM Jianming Zhang State Key Laboratory of Advanced Design and Manufacturing

More information

2.1 Quadraticsnts.notebook. September 10, 2018

2.1 Quadraticsnts.notebook. September 10, 2018 1 A quadratic function is a polynomial function of second degree. The graph of a quadratic function is called a parabola. 2 Standard Form: Intercept Form: Vertex Form: f(x) = a(x h) 2 + k vertex: (h, k)

More information

LAB 4: Introduction to MATLAB PDE Toolbox and SolidWorks Simulation

LAB 4: Introduction to MATLAB PDE Toolbox and SolidWorks Simulation LAB 4: Introduction to MATLAB PDE Toolbox and SolidWorks Simulation Objective: The objective of this laboratory is to introduce how to use MATLAB PDE toolbox and SolidWorks Simulation to solve two-dimensional

More information

10/26/ Solving Systems of Linear Equations Using Matrices. Objectives. Matrices

10/26/ Solving Systems of Linear Equations Using Matrices. Objectives. Matrices 6.1 Solving Systems of Linear Equations Using Matrices Objectives Write the augmented matrix for a linear system. Perform matrix row operations. Use matrices and Gaussian elimination to solve systems.

More information

Section 17.7: Surface Integrals. 1 Objectives. 2 Assignments. 3 Maple Commands. 4 Lecture. 4.1 Riemann definition

Section 17.7: Surface Integrals. 1 Objectives. 2 Assignments. 3 Maple Commands. 4 Lecture. 4.1 Riemann definition ection 17.7: urface Integrals 1 Objectives 1. Compute surface integrals of function of three variables. Assignments 1. Read ection 17.7. Problems: 5,7,11,1 3. Challenge: 17,3 4. Read ection 17.4 3 Maple

More information

HEAT2. Version 5.0. August 1, Dr. Thomas Blomberg. Lund-Gothenburg Group for Computational Building Physics

HEAT2. Version 5.0. August 1, Dr. Thomas Blomberg. Lund-Gothenburg Group for Computational Building Physics HEAT2 A PC-program for heat transfer in two dimensions. Manual with brief theory and examples. Version 5.0 August 1, 2000 Dr. Thomas Blomberg Lund-Gothenburg Group for Computational Building Physics Department

More information

Coordinate Geometry. Coordinate geometry is the study of the relationships between points on the Cartesian plane

Coordinate Geometry. Coordinate geometry is the study of the relationships between points on the Cartesian plane Coordinate Geometry Coordinate geometry is the study of the relationships between points on the Cartesian plane What we will explore in this tutorial (a) Explore gradient I. Identify the gradient of a

More information

Chapter 4: Linear Relations

Chapter 4: Linear Relations Chapter 4: Linear Relations How many people can sit around 1 table? If you put two tables together, how many will the new arrangement seat? What if there are 10 tables? What if there are 378 tables in

More information

More About Factoring Trinomials

More About Factoring Trinomials Section 6.3 More About Factoring Trinomials 239 83. x 2 17x 70 x 7 x 10 Width of rectangle: Length of rectangle: x 7 x 10 Width of shaded region: 7 Length of shaded region: x 10 x 10 Area of shaded region:

More information

Problem description. The FCBI-C element is used in the fluid part of the model.

Problem description. The FCBI-C element is used in the fluid part of the model. Problem description This tutorial illustrates the use of ADINA for analyzing the fluid-structure interaction (FSI) behavior of a flexible splitter behind a 2D cylinder and the surrounding fluid in a channel.

More information

3.1 INTRODUCTION TO THE FAMILY OF QUADRATIC FUNCTIONS

3.1 INTRODUCTION TO THE FAMILY OF QUADRATIC FUNCTIONS 3.1 INTRODUCTION TO THE FAMILY OF QUADRATIC FUNCTIONS Finding the Zeros of a Quadratic Function Examples 1 and and more Find the zeros of f(x) = x x 6. Solution by Factoring f(x) = x x 6 = (x 3)(x + )

More information

Comparison of different solvers for two-dimensional steady heat conduction equation ME 412 Project 2

Comparison of different solvers for two-dimensional steady heat conduction equation ME 412 Project 2 Comparison of different solvers for two-dimensional steady heat conduction equation ME 412 Project 2 Jingwei Zhu March 19, 2014 Instructor: Surya Pratap Vanka 1 Project Description The purpose of this

More information

QUESTIONS 1 10 MAY BE DONE WITH A CALCULATOR QUESTIONS ARE TO BE DONE WITHOUT A CALCULATOR. Name

QUESTIONS 1 10 MAY BE DONE WITH A CALCULATOR QUESTIONS ARE TO BE DONE WITHOUT A CALCULATOR. Name QUESTIONS 1 10 MAY BE DONE WITH A CALCULATOR QUESTIONS 11 5 ARE TO BE DONE WITHOUT A CALCULATOR Name 2 CALCULATOR MAY BE USED FOR 1-10 ONLY Use the table to find the following. x -2 2 5-0 7 2 y 12 15 18

More information

Investigation of a Robust Method for Connecting Dissimilar 3D Finite Element Models. David M. Trujillo 1. December 2005

Investigation of a Robust Method for Connecting Dissimilar 3D Finite Element Models. David M. Trujillo 1. December 2005 Investigation of a Robust Method for Connecting Dissimilar 3D Finite Element Models by David M. Trujillo 1 December 2005 1 Consultant, TRUCOMP, Fountain Valley, California trucomp@earthlink.net Abstract

More information

Assignment in The Finite Element Method, 2017

Assignment in The Finite Element Method, 2017 Assignment in The Finite Element Method, 2017 Division of Solid Mechanics The task is to write a finite element program and then use the program to analyse aspects of a surface mounted resistor. The problem

More information

Contents. I The Basic Framework for Stationary Problems 1

Contents. I The Basic Framework for Stationary Problems 1 page v Preface xiii I The Basic Framework for Stationary Problems 1 1 Some model PDEs 3 1.1 Laplace s equation; elliptic BVPs... 3 1.1.1 Physical experiments modeled by Laplace s equation... 5 1.2 Other

More information

ACCURACY OF NUMERICAL SOLUTION OF HEAT DIFFUSION EQUATION

ACCURACY OF NUMERICAL SOLUTION OF HEAT DIFFUSION EQUATION Scientific Research of the Institute of Mathematics and Computer Science ACCURACY OF NUMERICAL SOLUTION OF HEAT DIFFUSION EQUATION Ewa Węgrzyn-Skrzypczak, Tomasz Skrzypczak Institute of Mathematics, Czestochowa

More information

OPTIMISATION OF PIN FIN HEAT SINK USING TAGUCHI METHOD

OPTIMISATION OF PIN FIN HEAT SINK USING TAGUCHI METHOD CHAPTER - 5 OPTIMISATION OF PIN FIN HEAT SINK USING TAGUCHI METHOD The ever-increasing demand to lower the production costs due to increased competition has prompted engineers to look for rigorous methods

More information

Methods for Enhancing the Speed of Numerical Calculations for the Prediction of the Mechanical Behavior of Parts Made Using Additive Manufacturing

Methods for Enhancing the Speed of Numerical Calculations for the Prediction of the Mechanical Behavior of Parts Made Using Additive Manufacturing Methods for Enhancing the Speed of Numerical Calculations for the Prediction of the Mechanical Behavior of Parts Made Using Additive Manufacturing Mohammad Nikoukar, Nachiket Patil, Deepankar Pal, and

More information

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Lecture - 36

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Lecture - 36 Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras Lecture - 36 In last class, we have derived element equations for two d elasticity problems

More information

USER'S GUIDE UMTRI AIRBAG SKIN BURN MODEL

USER'S GUIDE UMTRI AIRBAG SKIN BURN MODEL USER'S GUIDE FOR THE UMTRI AIRBAG SKIN BURN MODEL RELEASE 9809 Steven J. Reed Matthew P. Reed Biosciences Division University of Michigan Transportation Research Institute 2901 Baxter Rd. Ann Arbor, MI

More information

Abaqus/CAE Heat Transfer Tutorial

Abaqus/CAE Heat Transfer Tutorial Abaqus/CAE Heat Transfer Tutorial Problem Description The thin L shaped steel part shown above (lengths in meters) is exposed to a temperature of 20 o C on the two surfaces of the inner corner, and 120

More information

Computational Fluid Dynamics (CFD) using Graphics Processing Units

Computational Fluid Dynamics (CFD) using Graphics Processing Units Computational Fluid Dynamics (CFD) using Graphics Processing Units Aaron F. Shinn Mechanical Science and Engineering Dept., UIUC Accelerators for Science and Engineering Applications: GPUs and Multicores

More information

An introduction to mesh generation Part IV : elliptic meshing

An introduction to mesh generation Part IV : elliptic meshing Elliptic An introduction to mesh generation Part IV : elliptic meshing Department of Civil Engineering, Université catholique de Louvain, Belgium Elliptic Curvilinear Meshes Basic concept A curvilinear

More information

Coupled Analysis of FSI

Coupled Analysis of FSI Coupled Analysis of FSI Qin Yin Fan Oct. 11, 2008 Important Key Words Fluid Structure Interface = FSI Computational Fluid Dynamics = CFD Pressure Displacement Analysis = PDA Thermal Stress Analysis = TSA

More information

AMath 483/583 Lecture 24. Notes: Notes: Steady state diffusion. Notes: Finite difference method. Outline:

AMath 483/583 Lecture 24. Notes: Notes: Steady state diffusion. Notes: Finite difference method. Outline: AMath 483/583 Lecture 24 Outline: Heat equation and discretization OpenMP and MPI for iterative methods Jacobi, Gauss-Seidel, SOR Notes and Sample codes: Class notes: Linear algebra software $UWHPSC/codes/openmp/jacobi1d_omp1.f90

More information

AMath 483/583 Lecture 24

AMath 483/583 Lecture 24 AMath 483/583 Lecture 24 Outline: Heat equation and discretization OpenMP and MPI for iterative methods Jacobi, Gauss-Seidel, SOR Notes and Sample codes: Class notes: Linear algebra software $UWHPSC/codes/openmp/jacobi1d_omp1.f90

More information

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Lecture - 24

Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras. Lecture - 24 Finite Element Analysis Prof. Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology, Madras Lecture - 24 So in today s class, we will look at quadrilateral elements; and we will

More information

Topology optimization of heat conduction problems

Topology optimization of heat conduction problems Topology optimization of heat conduction problems Workshop on industrial design optimization for fluid flow 23 September 2010 Misha Marie Gregersen Anton Evgrafov Mads Peter Sørensen Technical University

More information

Lab 9: FLUENT: Transient Natural Convection Between Concentric Cylinders

Lab 9: FLUENT: Transient Natural Convection Between Concentric Cylinders Lab 9: FLUENT: Transient Natural Convection Between Concentric Cylinders Objective: The objective of this laboratory is to introduce how to use FLUENT to solve both transient and natural convection problems.

More information

Tutorial 2. Modeling Periodic Flow and Heat Transfer

Tutorial 2. Modeling Periodic Flow and Heat Transfer Tutorial 2. Modeling Periodic Flow and Heat Transfer Introduction: Many industrial applications, such as steam generation in a boiler or air cooling in the coil of an air conditioner, can be modeled as

More information

F E H T A Finite Element Analysis Program

F E H T A Finite Element Analysis Program F E H T A Finite Element Analysis Program for the Microsoft Windows Operating System F-Chart Software http://www.fchart.com/ email: info@fchart.com Box 44042, Madison, WI 53744 Copyright 1995-2017 by S.A.

More information

CHAPTER 5. Special Cases

CHAPTER 5. Special Cases CHAPTER 5 Special Cases OVERHANGS To be treated as an overhang, slotted and louvered shading devices must have the slats arranged so that no direct solar radiation penetrates the overhang at any time during

More information

Heat Transfer Analysis of a Pipe

Heat Transfer Analysis of a Pipe LESSON 25 Heat Transfer Analysis of a Pipe 3 Fluid 800 Ambient Temperture Temperture, C 800 500 2 Dia Fluid Ambient 10 20 30 40 Time, s Objectives: Transient Heat Transfer Analysis Model Convection, Conduction

More information

Section 3.1 Gaussian Elimination Method (GEM) Key terms

Section 3.1 Gaussian Elimination Method (GEM) Key terms Section 3.1 Gaussian Elimination Method (GEM) Key terms Rectangular systems Consistent system & Inconsistent systems Rank Types of solution sets RREF Upper triangular form & back substitution Nonsingular

More information

Lecture 7. Transform-and-Conquer

Lecture 7. Transform-and-Conquer Lecture 7 Transform-and-Conquer 6-1 Transform and Conquer This group of techniques solves a problem by a transformation to a simpler/more convenient instance of the same problem (instance simplification)

More information

PACKAGE SPECIFICATION HSL To solve a symmetric, sparse and positive definite set of linear equations Ax = b i.e. j=1

PACKAGE SPECIFICATION HSL To solve a symmetric, sparse and positive definite set of linear equations Ax = b i.e. j=1 MA61 PACKAGE SPECIFICATION HSL 2013 1 SUMMARY To solve a symmetric, sparse and positive definite set of linear equations Ax = b i.e. n a ij x j = b i j=1 i=1,2,...,n The solution is found by a preconditioned

More information

For example, the system. 22 may be represented by the augmented matrix

For example, the system. 22 may be represented by the augmented matrix Matrix Solutions to Linear Systems A matrix is a rectangular array of elements. o An array is a systematic arrangement of numbers or symbols in rows and columns. Matrices (the plural of matrix) may be

More information

0_PreCNotes17 18.notebook May 16, Chapter 12

0_PreCNotes17 18.notebook May 16, Chapter 12 Chapter 12 Notes BASIC MATRIX OPERATIONS Matrix (plural: Matrices) an n x m array of elements element a ij Example 1 a 21 = a 13 = Multiply Matrix by a Scalar Distribute scalar to all elements Addition

More information

Connector with mm square contacts DIC- 131 DIC- DIC- 129 DIC- 128A DIC- 129A AC 500V AC 1000V. 20 milliohms or less

Connector with mm square contacts DIC- 131 DIC- DIC- 129 DIC- 128A DIC- 129A AC 500V AC 1000V. 20 milliohms or less mm Pitch Connectors DIC series mm Pitch Connectors Outline The DIC series provides various connectors for switching between circuits on PCB in combination with various male connectors, for various-pattern

More information

F E H T A Finite Element Analysis Program

F E H T A Finite Element Analysis Program F E H T A Finite Element Analysis Program for the Microsoft Windows Operating System F-Chart Software http://www.fchart.com/ email: info@fchart.com Box 44042, Madison, WI 53744 FAX: 608-836-8536 Copyright

More information

2D Model For Steady State Temperature Distribution

2D Model For Steady State Temperature Distribution 2D Model For Steady State Temperature Distribution Finite Element Method Vinh University of Massachusetts Dartmouth December 14, 21 Introduction Advisor Dr. Nima Rahbar: Civil Engineering Project Objective

More information

VIRTUAL UPSCALING Annual meeting 20/12/2017 Miguel Seco Calleja Haritz Vallejo Artola

VIRTUAL UPSCALING Annual meeting 20/12/2017 Miguel Seco Calleja Haritz Vallejo Artola VIRTUAL UPSCALING Annual meeting 20/12/2017 Miguel Seco Calleja Haritz Vallejo Artola Parque Tecnológico de San Sebastián Mikeletegi Pasealekua, 7 E-20009 Donostia-San Sebastián - Gipuzkoa www.tecnalia.com

More information

Autodesk Moldflow Insight AMI Cool Analysis Products

Autodesk Moldflow Insight AMI Cool Analysis Products Autodesk Moldflow Insight 2012 AMI Cool Analysis Products Revision 1, 22 March 2012. This document contains Autodesk and third-party software license agreements/notices and/or additional terms and conditions

More information

Wall thickness= Inlet: Prescribed mass flux. All lengths in meters kg/m, E Pa, 0.3,

Wall thickness= Inlet: Prescribed mass flux. All lengths in meters kg/m, E Pa, 0.3, Problem description Problem 30: Analysis of fluid-structure interaction within a pipe constriction It is desired to analyze the flow and structural response within the following pipe constriction: 1 1

More information

Non-Linear Finite Element Methods in Solid Mechanics Attilio Frangi, Politecnico di Milano, February 3, 2017, Lesson 1

Non-Linear Finite Element Methods in Solid Mechanics Attilio Frangi, Politecnico di Milano, February 3, 2017, Lesson 1 Non-Linear Finite Element Methods in Solid Mechanics Attilio Frangi, attilio.frangi@polimi.it Politecnico di Milano, February 3, 2017, Lesson 1 1 Politecnico di Milano, February 3, 2017, Lesson 1 2 Outline

More information

Linear and Quadratic Least Squares

Linear and Quadratic Least Squares Linear and Quadratic Least Squares Prepared by Stephanie Quintal, graduate student Dept. of Mathematical Sciences, UMass Lowell in collaboration with Marvin Stick Dept. of Mathematical Sciences, UMass

More information

Linear Equations in Linear Algebra

Linear Equations in Linear Algebra 1 Linear Equations in Linear Algebra 1.2 Row Reduction and Echelon Forms ECHELON FORM A rectangular matrix is in echelon form (or row echelon form) if it has the following three properties: 1. All nonzero

More information

Implementation of the skyline algorithm in finite-element computations of Saint-Venant equations

Implementation of the skyline algorithm in finite-element computations of Saint-Venant equations P a g e 61 Journal of Applied Research in Water and Wastewater (14) 61-65 Original paper Implementation of the skyline algorithm in finite-element computations of Saint-Venant equations Reza Karimi 1,

More information

1 Exercise: Heat equation in 2-D with FE

1 Exercise: Heat equation in 2-D with FE 1 Exercise: Heat equation in 2-D with FE Reading Hughes (2000, sec. 2.3-2.6 Dabrowski et al. (2008, sec. 1-3, 4.1.1, 4.1.3, 4.2.1 This FE exercise and most of the following ones are based on the MILAMIN

More information

Investigation of the behaviour of single span reinforced concrete historic bridges by using the finite element method

Investigation of the behaviour of single span reinforced concrete historic bridges by using the finite element method Structural Studies, Repairs and Maintenance of Heritage Architecture XI 279 Investigation of the behaviour of single span reinforced concrete historic bridges by using the finite element method S. B. Yuksel

More information

1.2 Numerical Solutions of Flow Problems

1.2 Numerical Solutions of Flow Problems 1.2 Numerical Solutions of Flow Problems DIFFERENTIAL EQUATIONS OF MOTION FOR A SIMPLIFIED FLOW PROBLEM Continuity equation for incompressible flow: 0 Momentum (Navier-Stokes) equations for a Newtonian

More information

2.2 Weighting function

2.2 Weighting function Annual Report (23) Kawahara Lab. On Shape Function of Element-Free Galerkin Method for Flow Analysis Daigo NAKAI and Mutsuto KAWAHARA Department of Civil Engineering, Chuo University, Kasuga 3 27, Bunkyo

More information

TYPE 529: RADIANT SLAB

TYPE 529: RADIANT SLAB TYPE 529: RADIANT SLAB General Description This component is intended to model a radiant floor-heating slab, embedded in soil, and containing a number of fluid filled pipes. The heat transfer within the

More information

Addition/Subtraction flops. ... k k + 1, n (n k)(n k) (n k)(n + 1 k) n 1 n, n (1)(1) (1)(2)

Addition/Subtraction flops. ... k k + 1, n (n k)(n k) (n k)(n + 1 k) n 1 n, n (1)(1) (1)(2) 1 CHAPTER 10 101 The flop counts for LU decomposition can be determined in a similar fashion as was done for Gauss elimination The major difference is that the elimination is only implemented for the left-hand

More information

3. Replace any row by the sum of that row and a constant multiple of any other row.

3. Replace any row by the sum of that row and a constant multiple of any other row. Math Section. Section.: Solving Systems of Linear Equations Using Matrices As you may recall from College Algebra or Section., you can solve a system of linear equations in two variables easily by applying

More information

Software within building physics and ground heat storage HEAT2 8. A PC-program for heat transfer in two dimensions Update manual.

Software within building physics and ground heat storage HEAT2 8. A PC-program for heat transfer in two dimensions Update manual. Software within building physics and ground heat storage HEAT2 8 A PC-program for heat transfer in two dimensions Update manual June 20, 2011 BLOCON www.buildingphysics.com Contents 1. WHAT S NEW IN HEAT2

More information

Basic Programming with Elmer Mikko Lyly Spring 2010

Basic Programming with Elmer Mikko Lyly Spring 2010 Basic Programming with Elmer Mikko Lyly Spring 2010 1 User defined functions 1.1 Calling convention User defined functions (udf) can be used to compute complicated material parameters, body forces, boundary

More information

ANSYS Workbench Guide

ANSYS Workbench Guide ANSYS Workbench Guide Introduction This document serves as a step-by-step guide for conducting a Finite Element Analysis (FEA) using ANSYS Workbench. It will cover the use of the simulation package through

More information

MATH 2400: CALCULUS 3 MAY 9, 2007 FINAL EXAM

MATH 2400: CALCULUS 3 MAY 9, 2007 FINAL EXAM MATH 4: CALCULUS 3 MAY 9, 7 FINAL EXAM I have neither given nor received aid on this exam. Name: 1 E. Kim................ (9am) E. Angel.............(1am) 3 I. Mishev............ (11am) 4 M. Daniel...........

More information

Factoring. Factor: Change an addition expression into a multiplication expression.

Factoring. Factor: Change an addition expression into a multiplication expression. Factoring Factor: Change an addition expression into a multiplication expression. 1. Always look for a common factor a. immediately take it out to the front of the expression, take out all common factors

More information

1. Carlos A. Felippa, Introduction to Finite Element Methods,

1. Carlos A. Felippa, Introduction to Finite Element Methods, Chapter Finite Element Methods In this chapter we will consider how one can model the deformation of solid objects under the influence of external (and possibly internal) forces. As we shall see, the coupled

More information

2. Instance simplification Solve a problem s instance by transforming it into another simpler/easier instance of the same problem

2. Instance simplification Solve a problem s instance by transforming it into another simpler/easier instance of the same problem CmSc 20 Intro to Algorithms Chapter 6. Transform and Conquer Algorithms. Introduction This group of techniques solves a problem by a transformation to a simpler/more convenient instance of the same problem

More information

lecture 8 Groundwater Modelling -1

lecture 8 Groundwater Modelling -1 The Islamic University of Gaza Faculty of Engineering Civil Engineering Department Water Resources Msc. Groundwater Hydrology- ENGC 6301 lecture 8 Groundwater Modelling -1 Instructor: Dr. Yunes Mogheir

More information

99 International Journal of Engineering, Science and Mathematics

99 International Journal of Engineering, Science and Mathematics Journal Homepage: Applications of cubic splines in the numerical solution of polynomials Najmuddin Ahmad 1 and Khan Farah Deeba 2 Department of Mathematics Integral University Lucknow Abstract: In this

More information

MRI Induced Heating of a Pacemaker. Peter Krenz, Application Engineer

MRI Induced Heating of a Pacemaker. Peter Krenz, Application Engineer MRI Induced Heating of a Pacemaker Peter Krenz, Application Engineer 1 Problem Statement Electric fields generated during MRI exposure are dissipated in tissue of the human body resulting in a temperature

More information

1.27mm Pitch Two-Piece Connectors

1.27mm Pitch Two-Piece Connectors 1.7mm Pitch Two-Piece Connectors HIF6 Series Connector in combination with the HIF6 series connection type HIF3B Series (MIL-C-833) HIF Series (Board direct mount type) Features 1. Product Variation The

More information

MAC Rev.S Learning Objectives. Learning Objectives (Cont.) Module 4 Quadratic Functions and Equations

MAC Rev.S Learning Objectives. Learning Objectives (Cont.) Module 4 Quadratic Functions and Equations MAC 1140 Module 4 Quadratic Functions and Equations Learning Objectives Upon completing this module, you should be able to 1. understand basic concepts about quadratic functions and their graphs.. complete

More information

STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression

STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression STAT 311 (3 CREDITS) VARIANCE AND REGRESSION ANALYSIS ELECTIVE: ALL STUDENTS. CONTENT Introduction to Computer application of variance and regression analysis. Analysis of Variance: one way classification,

More information

Methods of solving sparse linear systems. Soldatenko Oleg SPbSU, Department of Computational Physics

Methods of solving sparse linear systems. Soldatenko Oleg SPbSU, Department of Computational Physics Methods of solving sparse linear systems. Soldatenko Oleg SPbSU, Department of Computational Physics Outline Introduction Sherman-Morrison formula Woodbury formula Indexed storage of sparse matrices Types

More information

1.27mm Pitch Two-Piece Connector

1.27mm Pitch Two-Piece Connector 1.7mm Pitch Two-Piece Connector HIF6 Series Connector in combination with the HIF6 series connection type HIF3B Series (MIL-C-83503) HIF Series (Board direct mount type) HIF5 Series 1 (Card edge type)

More information

Finite Element Analysis Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology Madras. Module - 01 Lecture - 15

Finite Element Analysis Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology Madras. Module - 01 Lecture - 15 Finite Element Analysis Dr. B. N. Rao Department of Civil Engineering Indian Institute of Technology Madras Module - 01 Lecture - 15 In the last class we were looking at this 3-D space frames; let me summarize

More information

Vehicle thermal safety with THESEUS-FE. Author: Dr. Daniel Koester

Vehicle thermal safety with THESEUS-FE. Author: Dr. Daniel Koester Author: Dr. Daniel Koester Date: September 4, 2014 Workflow for Underhood Simulations ANSA or other CAD/meshing software CAD cleanup and meshing: either CAD geometry description or NASTRAN-style FE meshes

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction GTU Paper Analysis (New Syllabus) Sr. No. Questions 26/10/16 11/05/16 09/05/16 08/12/15 Theory 1. What is graphic standard? Explain different CAD standards. 2. Write Bresenham s

More information

Stress Analysis of thick wall bellows using Finite Element Method

Stress Analysis of thick wall bellows using Finite Element Method Stress Analysis of thick wall bellows using Finite Element Method Digambar J. Pachpande Post Graduate Student Department of Mechanical Engineering V.J.T.I. Mumbai, India Prof. G. U. Tembhare Assistant

More information

Tutorial: Modeling Domains with Embedded Reference Frames: Part 2 Sliding Mesh Modeling

Tutorial: Modeling Domains with Embedded Reference Frames: Part 2 Sliding Mesh Modeling Tutorial: Modeling Domains with Embedded Reference Frames: Part 2 Sliding Mesh Modeling Introduction The motion of rotating components is often complicated by the fact that the rotational axis about which

More information

Introduction to CS databases and statistics in Excel Jacek Wiślicki, Laurent Babout,

Introduction to CS databases and statistics in Excel Jacek Wiślicki, Laurent Babout, One of the applications of MS Excel is data processing and statistical analysis. The following exercises will demonstrate some of these functions. The base files for the exercises is included in http://lbabout.iis.p.lodz.pl/teaching_and_student_projects_files/files/us/lab_04b.zip.

More information

ANSYS AIM Tutorial Thermal Stresses in a Bar

ANSYS AIM Tutorial Thermal Stresses in a Bar ANSYS AIM Tutorial Thermal Stresses in a Bar Author(s): Sebastian Vecchi, ANSYS Created using ANSYS AIM 18.1 Problem Specification Pre-Analysis & Start Up Pre-Analysis Start-Up Geometry Draw Geometry Create

More information

Otto-Von-Guericke universitat Magdeburg. ANSYS Lab. Report. A thermal problem solution process in ANSYS AHMAD GOHARI. Supervisor: Mr.

Otto-Von-Guericke universitat Magdeburg. ANSYS Lab. Report. A thermal problem solution process in ANSYS AHMAD GOHARI. Supervisor: Mr. Otto-Von-Guericke universitat Magdeburg ANSYS Lab. Report A thermal problem solution process in ANSYS AHMAD GOHARI Supervisor: Mr. Alfakheri 12 ANSYS mechanical (APDL): Introduction: ANSYS is a general

More information

Question 1. [5 points] Circle and briefly explain the error(s) in the following code:

Question 1. [5 points] Circle and briefly explain the error(s) in the following code: CS 101, Spring 2017 Feb 14th Exam 1 Name: Question 1. [5 points] Circle and briefly explain the error(s) in the following code: double x, y; result = (x)(x) + y; printf("%lf\n", result); Question 2. [10

More information

2 T. x + 2 T. , T( x, y = 0) = T 1

2 T. x + 2 T. , T( x, y = 0) = T 1 LAB 2: Conduction with Finite Difference Method Objective: The objective of this laboratory is to introduce the basic steps needed to numerically solve a steady state two-dimensional conduction problem

More information

MATH 253/101,102,103,105 Page 1 of 12 Student-No.:

MATH 253/101,102,103,105 Page 1 of 12 Student-No.: MATH 253/101,102,103,105 Page 1 of 12 Student-No.: Final Examination December 16, 2015 Duration: 2.5 hours This test has 10 questions on 12 pages, for a total of 80 points. Dr. G. Slade, Dr. C. Macdonald,

More information

2mm Pitch Miniature Connector for HDD

2mm Pitch Miniature Connector for HDD 2mm Pitch Miniature Connector for HDD A3E Series type without polarizing guide type with polarizing guide Features 1. Variation in Number of Contacts This connector can be chosen according to applications,

More information

Efficient Tridiagonal Solvers for ADI methods and Fluid Simulation

Efficient Tridiagonal Solvers for ADI methods and Fluid Simulation Efficient Tridiagonal Solvers for ADI methods and Fluid Simulation Nikolai Sakharnykh - NVIDIA San Jose Convention Center, San Jose, CA September 21, 2010 Introduction Tridiagonal solvers very popular

More information

MPI Programming. Henrik R. Nagel Scientific Computing IT Division

MPI Programming. Henrik R. Nagel Scientific Computing IT Division 1 MPI Programming Henrik R. Nagel Scientific Computing IT Division 2 Outline Introduction Finite Difference Method Finite Element Method LU Factorization SOR Method Monte Carlo Method Molecular Dynamics

More information

Chapter 3. Speech segmentation. 3.1 Preprocessing

Chapter 3. Speech segmentation. 3.1 Preprocessing , as done in this dissertation, refers to the process of determining the boundaries between phonemes in the speech signal. No higher-level lexical information is used to accomplish this. This chapter presents

More information

Linear Discriminant Functions: Gradient Descent and Perceptron Convergence

Linear Discriminant Functions: Gradient Descent and Perceptron Convergence Linear Discriminant Functions: Gradient Descent and Perceptron Convergence The Two-Category Linearly Separable Case (5.4) Minimizing the Perceptron Criterion Function (5.5) Role of Linear Discriminant

More information

Tutorial 1. Introduction to Using FLUENT: Fluid Flow and Heat Transfer in a Mixing Elbow

Tutorial 1. Introduction to Using FLUENT: Fluid Flow and Heat Transfer in a Mixing Elbow Tutorial 1. Introduction to Using FLUENT: Fluid Flow and Heat Transfer in a Mixing Elbow Introduction This tutorial illustrates the setup and solution of the two-dimensional turbulent fluid flow and heat

More information

Finding the Maximum or Minimum of a Quadratic Function. f(x) = x 2 + 4x + 2.

Finding the Maximum or Minimum of a Quadratic Function. f(x) = x 2 + 4x + 2. Section 5.6 Optimization 529 5.6 Optimization In this section we will explore the science of optimization. Suppose that you are trying to find a pair of numbers with a fixed sum so that the product of

More information