Module fea - finite element analysisnbspquestion 2 method

Assignment Help Mechanical Engineering
Reference no: EM13360372

Module FEA - FINITE ELEMENT ANALYSIS 

Question 2/ Method to assess the value of your analysis output 

a) What is the characteristic of the system matrix of a FEA analysis? Which information can you extract from the pivot ratio? 

b) Through three reasons discuss the possible errors occurred by un-correct loading. 

c) Give three reasons for which non-linear FEA is required when not expected. 

d) Which tools does Ansys propose to estimate errors? Give brief explanation and provide the command line for the three of them? 

e) Discuss linear and parabolic elements within their application. Which one of linear or parabolic elements would you use for highly curved geometries? Explain why. 

f) What is a discretisation error? What is a formulation error? What is a numerical error? 

Question 3/ Thermal analysis 

Problem description 

The heat exchanger shown below is used to cool a motor. The coolant coming from the motor (hot fluid) runs through the block near a cold fluid coming from a separate reservoir. The base of the heat exchanger is mounted on an insulated surface (no heat transfer occurs across the base). The heat exchanger also utilizes fins along its top surface to increase heat transfer to the surrounding air through convection. 

As shown in the figure below, the heat exchanger block is 54 mm wide by 80 mm high, and is sufficiently long that it can be analysed using a 2D thermal analysis; i.e., heat flow in the third direction (into the paper) can be neglected. The five fins on the top surface are 6 mm thick, with 6 mm spacing between fins, rounded on the inner and outer edges with a 3 mm radius. The fins are 20 mm long. Both fluid channels have a diameter of 24 mm and are centred horizontally in the block.  

The air temperature surrounding the heat exchanger is 300 K, and the convective heat transfer (film) coefficient can be assumed to be h = 400 W/m2-K. This convection acts on all external surfaces except for the base, which is insulated. The temperature of the hot fluid is T hot = 600 K, and the temperature of the cold fluid is Tcold = 285 K. The convective heat transfer coefficient of both fluids is h = 5000 W/m2-K. 

The heat exchanger is made of an aluminium alloy with the following thermal properties (density, ρ = 2702 kg/m3):

2147_Thermal analysis.png

Temperature (K) 200 300 400 600 

Thermal Conductivity, k (W/m-K) 237 237 240 231 

Specific Heat, c (J/kg-K) 798 903 949 1033 

 

Assume an initial temperature for the heat exchanger of 300 K. Assume the thermal loads (convections) are applied suddenly (stepped). 
a) Build an appropriate finite element model of the heat conduction problem using Ansys and provide a complete set of command lines. The text file should contain three set of commands: heading, pre-processor, and solve. 
b) Justify the type and the dimension of element you have chosen. 
Perform a transient thermal analysis of the heat exchanger from which you will determine the temperature distribution in the exchanger after 2 minutes, and generate temperature vs. time plots for the hottest and coolest nodes in the heat exchanger, as well as the node at the top of the centre fin. 
c) Plot a nodal temperature plot after 2 minutes of the heat exchanger, and a temperature vs. time plot for the nodes listed above. Three plots should be provided.
d) Determine the length of time for the hottest node to reach 440 degree Kelvin. 
e) Has the temperature of the heat exchanger reached steady-state conditions after 2 minutes? 
f) List the nonlinear solution parameters used in the analysis (i.e.: time step size, and max and min values if automatic time stepping was used). 
Question 4 PZT actuator 
a) Using the code below model a PZT actuated composite beam. 
b) Using the ANSYS help file Mechanical APDL-Command Reference lightly comment the supplied code  
c) Solve the static model and extract the maximum tip deflection and plot stress
d) Using a suitable frequency range extract 3 resonant modes
e) Using the same geometry & inputs how could the tip deflection be increased 
 
FINISH 
/CLEAR 
/PREP7 
/UNITS, SI 
um=1e-6 
eps_0=8.854e-12 
dens_p=7700 
c11_p=1.57e11 
c12_p=1.09e11 
c13_p=9.77e10 
c33_p=1.23e11 
c44_p=2.57e10 
e31_p=-1.93 
e33_p=15.5 
e24_p=10.81 
eps11_p=1370*eps_0 
eps33_p=1500*eps_0  
 
damp_pzt=1.0e-3 
loss_pzt=0.013 
dens_s=2330 
young_s=160e9 
poiss_s=0.23 
damp_si=1.0e-5 
beam_dn=2 
piez_dn=1 
meshsize=25*um 
beam_w=75*um 
beam_l=350*um 
beam_t=10*um 
piez_t=2*um 
ET, 1, PLANE42 
ET, 2, SOLID186 
ET, 3, SOLID5 
MP, EX, 1, young_s 
MP, DENS, 1, dens_s 
MP, NUXY, 1, poiss_s 
MP, DMPR,1,damp_si 
MP, DENS, 2, dens_p 
MP,DMPR,2,damp_pzt 
TB, ANEL, 2 
TBDATA, 1, c11_p 
TBDATA, 2, c12_p 
TBDATA, 3, c13_p 
TBDATA, 7, c11_p 
TBDATA, 8, c13_p 
TBDATA, 12, c33_p 
TBDATA, 16, (c11_p-c12_p)/2 
TBDATA, 19, c44_p 
TBDATA, 21, c44_p 
TB, PIEZ, 2 
TBDATA, 3, e31_p 
TBDATA, 6, e31_p 
TBDATA, 9, e33_p 
TBDATA, 14, e24_p 
TBDATA, 16, e24_p 
MP, PERX, 2, eps11_p 
MP, PERY, 2, eps11_p 
MP, PERZ, 2, eps33_p 
RECTNG, 0, beam_l, 0, beam_w 
ESIZE, meshsize 
MSHAPE,0,2D 
AMESH, ALL 
TYPE, 2 
MAT,1 
ESIZE, , beam_dn 
VEXT, ALL, , , , , -beam_t 
TYPE, 3 
MAT, 2 
ESIZE, , piez_dn 
ASEL, , LOC, Z, 0,1e-11 
VEXT, ALL, , , , , piez_t 
ALLSEL, ALL 
NSEL,S, LOC, z, 0,1E-11 
*GET,node_o,NODE,,NUM,MIN 
CM,out,NODE 
CP, NEXT, VOLT, ALL 
D,node_o, VOLT, 0 
NSEL,S , LOC, z, piez_t, piez_t+1.0E-11 
*GET,node_s,NODE,,NUM,MIN 
CM,signal,NODE 
CP, NEXT, VOLT, ALL 
D,node_s, VOLT, 5 
NSEL,S,LOC, X, 0, 1e-11 
D, ALL, UX, 0 
D, ALL, UY, 0 
D, ALL, UZ, 0

 

Reference no: EM13360372

Questions Cloud

Assessmentnbspdescription building the right organisational : assessmentnbspdescription building the right organisational culture.the organisationrsquos cultureis often described as
In a class all pupils take mathematics m 18 take chemistry : in a class all pupils take mathematics m 18 take chemistry c 17 take biology b and 24 take physics p of those taking 3
Choose one 1 of the three reading selections from the list : choose one 1 of the three reading selections from the list of topic choices below. read the selection in the textbook.
Task 1 create a risk identification checklist : task 1 create a risk identification checklist. nbspnbspnbspnbspnbspnbspnbspnbspnbspnbspnbspprocedure
Module fea - finite element analysisnbspquestion 2 method : module fea - finite element analysisnbspquestion 2 method to assess the value of your analysis outputnbspa what is the
Part 1 of 1 - 1 question 1 of 16let npq where pq are primes : part 1 of 1 - 1 question 1 of 16let npq where pq are primes of the same length and let phi be eulers totient
Thi is a small case study about the price mechanism and : thi is a small case study about the price mechanism and demand related to price.nbspmonsantowhen pharmacia which was
Question 1 a 25 investment produces 2750 at the end of the : question 1. a 25 investment produces 27.50 at the end of the year with no risk. if the occ 10 annually is this a good
Interest rate method problems nbspquestion 1 you are in the : interest rate method problems nbspquestion 1. you are in the process of purchasing a new automobile that will cost you

Reviews

Write a Review

Mechanical Engineering Questions & Answers

  Express the result as a cartesian vector

What is the couple moment of the two couples that act on the pipe assembly. The distance from A to B is d = 400 mm.express the result as a cartesian vector.

  Determine the value of force when the rod begins to yield

A 20-mm diameter rod made of a ductile material with a yield strength of 350 MPa is subjected to torque of 100 N.m and a bending moment of 150 N.m. An axial force is then gradually applied. Determine the value of force when the rod begins to yield..

  What is the composition of the alloy

What is the composition of the alloy and what is the temperature at which the first solid phase solidifies? (Estimates rounding to convenient numbers are sufficient.)

  Calculate the ratio of the initial to final speed of sound

Air expands isentropically from 1.5 MPa and 60 C (centigrade) to 0.4 Mpa. Calculate the ratio of the initial to final speed of sound.

  Determine the design stress for bolts in a cylinder cover

determine the design stress for bolts in a cylinder cover where the load is fluctuating due to gasnbsppressure. the

  Compute next year sales and the sales for each quarter

Using the data in Problem , Meredith and Smunt Manufacturing expects sales of pumps to grow by 10% next year. Compute next year's sales and the sales for each quarter.

  Explain temperature change

explain temperature change (not conversion) is calculated from Celcius to Fahrenheit to Kelvin.

  Explain why the two measurements give different values

A similar measurement is made applying the force parallel to one of the cube axes. Explain why the two measurements give different values of the elastic modulus.

  What is the design objective

2. What is the design objective? -to minimize the required power input to the compressors 3. What parameters does the design engineer control?

  What is the ideal mechanical advantage of the system

A wheel barrow is used to lift a 200 lb load. The length from the wheel axle to the center of the load is 2 ft. The length from the wheel and axle to the effort is 5 ft. 5. What is the ideal mechanical advantage of the system?

  Calculate the specific enthalpy at the compressor outlet

Calculate the specific enthalpy at the compressor outlet. Include in your calculations the changes in kinetic and potential energy.

  Determine the angular acceleration of the bars ab and bc

collar c moves along a circular guide with radius R=2ft with a constant speed v=18ft/s. at the instant, the bars AB and BC are vertical and horizontal respectively. Letting L=4ft and H=5ft, determine the angular acceleration of the bars AB and BC ..

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd