Top Banner
COOKING CHICKEN Andrew Davidson April 4, 2014 ME 340 – Heat Transfer Winter 2014
11

Cooking Chicken

Jan 24, 2016

Download

Documents

quade

Cooking Chicken. Andrew Davidson April 4, 2014 ME 340 – Heat Transfer Winter 2014. Description & objectives. Measure the time to cook chicken in boiling water – when internal temperature reaches 74 ° C - PowerPoint PPT Presentation
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Cooking Chicken

COOKING CHICKENAndrew Davidson

April 4, 2014ME 340 – Heat Transfer Winter 2014

Page 2: Cooking Chicken

DESCRIPTION & OBJECTIVES

Measure the time to cook chicken in boiling water – when internal temperature reaches 74°C

Model experiment using both the lumped capacitance and transient conduction analytical methods in MATLAB

Compare actual cook time to the estimated time provided by each model

Page 3: Cooking Chicken

EXPERIMENT SET UP

Materials: Calibrated thermocouple Pot of boiling water – kept at a

constant temperature of 87°C 3 chicken breasts (no bones)

in a cylindrical shape – 6cm long x 3cm diameter and thawed to 15°C

Timer Home stove

Page 4: Cooking Chicken

EXPERIMENT

*Average time of 670 seconds to cook chicken

Page 5: Cooking Chicken

ANALYTICAL MODEL ASSUMPTIONS

Constant temperature of boiling water at 87°C Chicken shape can be analyzed as infinite cylinder Chicken has constant properties Chicken’s properties are the same as those of water

(Table A.6)

Temperatures (°C)

Ti (inside chicken)

15

Tf (inside chicken)

74

Tave (inside chicken)

44.5

T∞ (water) 87

Water Properties at Tave

ρ (kg/m³) 989

Cp (J/kg*K) 4180

k (W/m²) 0.640

Vf (m3/kg) 1.0011 E-3

Vg (m3/kg) 13.98

hfg (kJ/kg) 2390

α (k/ρ*Cp) 15.5 E-6

σ(N/m) 0.0683

Chicken Dimensions

Diameter (m)

0.03

Length (m) 0.06

Asurface (m²) 0.0057

Volume (m3) 4.24 E-5

Page 6: Cooking Chicken

MODEL RESULTS

Lumped Capacitance Method: q’’ = 483233.9 (W/m2) equation 10.6 for boiling water h = 6711.6 (W/m2*K) as calculated with heat flux value Biot Number Calculations:

Bi = h*Lc/k = (h*ro)/(2*k)

Bi = 78.7 Bi > 0.1 → lumped capacitance model NOT valid

Time Predicted: t* = 7.91 seconds

* All calculations done in MATLAB as shown in the Appendix below

Page 7: Cooking Chicken

MODEL RESULTS

Transient Conduction q’’ = 483233.9 (W/m2) equation 10.6 for boiling water h = 6711.6 (W/m2*K) as calculated with heat flux value Biot Number Calculations:

Bi = (h*ro)/(k) = 157.3

Bi → ζ1 , C1 (Table 5.1 in Textbook)

Time Predicted: t = [r2/(α*ζ2)] * ln [(T∞- Ti)/(T∞- Tf ) * C1*J0 (0)]

Time = 548.6 seconds Fo = (α*t)/r2 = 0.38 > 0.2 → approximate solution is valid

* All calculations done in MATLAB as shown in the Appendix below

Page 8: Cooking Chicken

CONCLUSIONS

The lumped capacitance method time prediction was significant off from the experiment values because the Biot number showed the model was not valid.

The transient conduction method produced a time predication that was relatively accurate when compared to the experimental values Texp= 670 sec ≈ Tmodel = 548.6 sec

Page 9: Cooking Chicken

IMPROVEMENTS

Potential Sources of Error → Improvement Each chicken size was assumed to be the same size when

they were trimmed to estimate the appropriate cylinder, but they were not exact Cut chicken to exact sizes measured

Water was assumed to be at the same temperature the whole time, but the pot of water might have been small enough to change temperature when the chicken was first placed inside Use a bigger pot of water to minimize differences

Chicken properties are not identical to those of water Use exact values found for chicken

Variations due to instrumentation used Check calibration and run many tests and take averages

Page 10: Cooking Chicken

APPENDIX All equations and values used were found in the course

textbook 6th Ed Fund. of Heat and Mass Transfer (Incropera et al.)

MATLAB CODE:%% Heat Transfer Project - Andrew Davidson - April 4, 2014% Using both lumped capacitance and transient conduction methods% Chicken Properties C_Ti = 15; % CC_Tf = 74; % C %http://www.foodsafety.gov/keep/charts/mintemp.htmlC_Tave = (C_Ti + C_Tf)/2; % = 44.5C = 317.5K = 320k for properties for chicken which are the same as water% Table A.6 at 320K for waterC_hfg = 2390000; % J/kgC_vf = 1.011*(10^(-3)); % m3/kgC_vg = 13.98; % m3/kgC_cp = 4180; % J/kg*KC_sigma = 0.0683; % N*mC_kf = 0.640; % W/m*K % Table A.3 for chicken% Chicken cooked as a cylinder with dimensions:length = 0.06; %m (6cm)radius = 0.015; %m (3cm diameter)volume = length*pi*radius^2; % m^3C_density = 1/C_vf; % kg/m^3C_mass = C_density*volume; % kgAs = length*2*pi*radius; % m^2

% Water Properties = Chicken Properties W_hfg = C_hfg; % kJ/kgW_vf = C_vf; % m3/kgW_vg = C_vg; % m3/kgW_cp = C_cp; % J/kg*KW_sigma = C_sigma; % N*mW_kf = 0.640; % W/m*K W_Tboil = 87; % C %% Heat Flux Calculationspl = 1/W_vf;pv = 1/W_vg;q_flux = (0.149)*(W_hfg)*(pv)*(((W_sigma*9.81*(pl-pv))/(pv^2))^(.25)); % q'' % Eq 10.6 from book h = (q_flux)/(abs(C_Ti-W_Tboil));

 

Page 11: Cooking Chicken

APPENDIX

MATLAB CODE continued:

%% Lumped Capacitance Method (LC)Lc = radius/2; % Characteristic length for cube (Handout 5.1)Bi_LC = (h*Lc)/C_kf; time_LC = ((C_density*C_cp*volume)/(h*As))*log((W_Tboil - C_Ti)/(W_Tboil - C_Tf)); %% Transient Conduction Method (TC)Bi_TC = (h*radius)/C_kf; % Handout 5.5-5.6% Table 5.1alpha = C_kf/(C_density*C_cp);Si = 2.4050; % radC1 = 1.6018;time_TC = ((radius^2)/(alpha*(Si^2))) * log(((W_Tboil - C_Ti)/(W_Tboil - C_Tf)) * (C1*1)); % Check Fo > 0.2 to be sure model is validFo = (alpha*time_TC)/(radius^2)