Application of genetic algorithm in pyrolysis model parameter estimation. Anna Matala 60968U

Size: px
Start display at page:

Download "Application of genetic algorithm in pyrolysis model parameter estimation. Anna Matala 60968U"

Transcription

1 Application of genetic algorithm in pyrolysis model parameter estimation Anna Matala 60968U 1

2 Contents 1 Introduction 3 2 Small scale experiments 3 3 Pyrolysis Modeling 7 4 Genetic Algorithm Basic idea Fitness function Results Test materials Effect of the GA parameters Effect of fitness function Consistency of resulting Application on the real cable material Finding other parameters than A and E Using the algorithm Conclusions 28 2

3 1 Introduction The use of numerical fire simulation programs has become an important part of fire safety engineering and research because the full scale tests are usually far too expensive or even impossible to put into practice. For the deterministic simulation of fire spread, the behavior of the condensed phase materials must be modeled. This modeling should consider both heat transfer and the condensed phase reactions taking place in the material. The parameters of the equations describing these reactions determine the kinetics of material and are strongly material dependent. These parameters are usually not known and they may be difficult to find. Finding the values of the reaction parameters based on some experimental data is a parameter estimation problem. Typically this problem can be formulated as an optimization problem aiming at smallest possible error between experimental observation and model output. Many of the common optimization methods do not work effectively in cases of many variables and complex time series. Some of the methods (e.g. gradient method) may be unable to find the global minimum in presence of the local minima. Genetic Algorithms (GA) are offering an effective method for big problems. It can find several variables at the same time and thanks to its structure, it always tries to find better solutions outside of the local minimum area. GA have recently been used for the parameter estimation of condensed phase reactions by Lautenberger et al. [1] and Rein et al. [2]. The purpose of this work is to study the practical aspects of GA application in the estimation of pyrolysis model parameters. These aspects include the effects of the various GA parameters and the definition of the error function to be minimized. Finally, the algoritm is used to find the reaction parameters of a real cable material used in the nuclear power plant applications. The results are provided in the form usable by the version 5 of the Fire Dynamics Simulator software [3]. 2 Small scale experiments In general to get good simulation results, it is important to define the boundary conditions as accurate as possible. In fire simulation, this means knowing how 3

4 the burning material is behaving when heated. There are many small scale techniques that can be used to get information about material behavior in heated environment. TGA (Thermogravimetric Analysis) [4] needs typically some mg of sample material. The sample is placed to furnace that is heated slowly (heating rate 2-20 K/min). The slow heating ensures that the material is in equilibrium with its surroundings all the time. The material is connected to a balance that measures the weight of the sample. The data is collected by computer and the result tells how the mass of sample changes during the heating. By analyzing the shape of the TGA graph one can find the amount of reactions and the temperature area they are occurring. The unit of TGA data is mass or mass percent. Figure 1 shows a TGA graph and its gradient for a cable material at heating rate 2 K/min and when the surrounding gas is air. Figure 1: TGA graph and its gradient to a cable material. DSC (Differential Scanning Calorimetry) [4] is similar to TGA test but instead of mass reduction it measures the changes of energy. It also needs only a small piece of sample material and heating happens uniformly. In DSC, the temperatures of the sample and the reference material are kept identical and the amount of heating energy needed for this is measured. In figure 2 is shown a DSC graph of the previous cable material. In DSC graph one can see whether the reaction is endothermic or exothermic. Endothermic reaction absorbs energy while 4

5 exothermic releases it. The enthalpy of reaction can be calculated as an integral over the selected temperature range. The reactions of a material should be seen in TGA and DSC graph in equal temperatures. Figure 2: DSC graph for a cable material. DTA (Differential Thermal Analysis) [4] is practically the same as DSC but the samples are not kept in same temperature and instead the changes of it are measured during the heating. STA (Simultaneous Thermal Analysis) is a device that measures TGA and DSC/DTA data in same experiment. Cone calorimeter (ISO ) can be used to test samples in order of magnitude larger scales than TGA. The sample size is 10 x 10 cm and it is set under a cone heater and ignited. During the combustion several quantities are simultaneously measured and saved to computer. Some of the most important quantities are burning rate, heat release rate and the production of various gases. It is giving a better idea what really is happening during the combustion. In figure 3 is shown a burning rate of birch in cone test. 5

6 Figure 3: Burning rate of birch in cone test. 6

7 3 Pyrolysis Modeling FDS (Fire Dynamics Simulator) is modeling the kinetics of the materials condensedphase using the Arrhenius equation. It can be written d dt ( ρ ρ 0 ) = A( ρ ρ 0 ) n e E RT, (1) where ρ is density of material, ρ 0 is density of original material in the beginning and R is a gas constant. A, E and n are depending of the material. A is called frequency factor and can have values from wide range, [10 10,10 25 ] s 1. E is the activation energy and its values are typically between [100,500] kj/mol. n is the reaction order and has values near 1. This equation models one reaction of a material. If material undergoes many reactions, the parameters have to be found for every reaction separately. 4 Genetic Algorithm 4.1 Basic idea Genetic Algorithms (GA) are based on the idea of evolution [5]. Assume that we have a model with some unknown variables, and we want to use GA to find the best match with the reality. In other words, we are comparing the experimental data to simulated data. In this work, the simulated data is generated by FDS5 using these variables. In the language of genetic algorithms, these variables are called genes. They can be binary or real values. If they are binary, they may have some encoding function which converts the value of gene to real output. This is also called genotype-phenotype mapping. However, this work concentrates on finding real value variables. Different values of a gene are called alleles. A set of genes (or set of variables of the model) is called chromosome or individual. A set of individuals is called population. As in real evolution, many different populations may co-exist. These population groups are called subpopulations and they are isolated. This helps to maintain the variety in the whole population. To get new genes to subpopulations, they migrate every now and then between other subpopulations. The GA has most of its terminology from evolution biology and the explanations are listed here: 7

8 Initial population A matrix of population size (number of individuals x number of genes) created by generating random numbers of selected range. To some variables with large range of possible values, logarithmic scale can be used. Fitness value The goodness of an individual, how well the candidate model matches the experimental data. Calculated using fitness function. Stopping condition Condition of stopping the algorithm. maximum number of generations or achieving certain fitness. Can be a Ranking To give values to individuals according their fitness values. The better individual, the better value in ranking. The ranking value can be understood as a probability to survive to the next generation. Selection To choose the parents for the next generation. The individuals with high ranking value can be parents for many offspring while the individuals with worst ranking values should not be able to survive. The selection is based on stochastic methods. Crossover The production of offspring. The chosen parents are set to pairs and each pair are changing alleles according the conditions of crossover. Mutation A gene in a chromosome is replaced by new random number from the defined area. The mutation occurs relatively seldom but is really important to maintain the variety in population. By mutation the algorithm can find new and better alleles that leads to global minimum. Migration Individuals or genes of different subpopulations are changing place bringing new alleles to subpopulations. Next generation The next generation consists of the best offspring and best parents so that the number of individuals in population stays constant. All the actions (selection, crossover, mutation and migration) occur stochastically. Before running GA, the user should define the rates of actions or the probabilities that the actions are taking place. Normally the crossover rate is quite high, 0.7 or bigger and mutation and migration rates considerably smaller. The procedure of GA is as follows: 1. Create initial population and calculate fitness values. 8

9 2. Determine stopping condition and crossover, mutation and migration rates. 3. While the stopping condition is not true, repeat: Ranking. Selection. Crossover. Mutation. Calculate new fitness values. Create the next generation. Migration. 4. When algorithm stops running, it returns the best solution found. 4.2 Fitness function The most important part of creating an effective genetic algorithm is to find the best way to calculate the fitness of the model, the fitness values. In general, the idea is to minimize difference between the experimental and modeled data. To calculate this difference, Least Mean Squares (LMS) is commonly used. It can be scaled to maximum of 1 by using following equation [1] (Texp R = 1 T exp ) 2 (T exp T mod ) 2 (Texp T (2) exp ) 2 where the summing goes over the time series T. Exp denotes to experimental data, mod to model and T to average of time series T. The latter is used to scale the fitness value. To find the best fitness function, different ways to calculate the fitness value are studied. In addition to the actual time series, its gradient may also be used in the computation of the fitness value. In TGA test the residual mass is the most important result and therefore comparing them may also be useful. The fitness function is now ov = w1(1 +w2(1 (Mexp M exp ) 2 (M exp M mod ) 2 (Mexp M exp ) 2 ) (Gexp Ḡexp) 2 (G exp G mod ) 2 (Gexp Ḡexp) 2 ) (3) +w3((r exp R mod ) 2. where M is TGA data, G its gradient and R residual mass in the end. w=[w1 w2 w3] is weight vector and the sum of cells is 1. The effect of each part can be 9

10 studied by changing the weights. Other parameters studied are the mutation rate and the number of subpopulation. The latter effects on one hand to diversity of population but on the other hand every individual increases calculation time. A good compromise should be found between too small and too large. Heating rate affects to the shape of the graph so if possible, the fitness values should be calculated as mean with all available heating rates. In figure 4 is shown an example of model that succeeds to explain one rate well but the other ones not. Figure 4: The reason to compare with more than one heating rates. In one rate model can be good but in the others totally wrong. The model should explain every rate at the same time. Solid line stands for the original data and the dash line for the solution of the algorithm. 10

11 5 Results 5.1 Test materials In this work, three different materials are used to test the performance of genetic algorithm. Two of them are generated by simulation to make it easier to compare parameters, and one is a real TGA data. The most simple material is a solid of which the water is evaporated. The reaction is SOLID + BOUNDW AT ER k SOLID + W AT ERGAS. This data is generated by simulator using parameters that are A=4.56E15 and E=1.62E5. The other parameters of FDS input file are presented in table 1. n 1 emissivity 1 density 1000 conductivity 1 specific heat 1 residue yield 0 fuel yield 0 water yield 1 Table 1: Water evaporation: Parameters for FDS input file. The second material is cellulose [6] and its mechanism is presented in figure 5. Figure 5: The chemical reaction of cellulose. The cellulose reaction is called Broido-Shafizadeh scheme and can be used to describe the kinetics of wood as the composition of wood is 50 % of cellulose and 25 % of hemicellulose. The mechanism accounts for two competing reaction pathways. The reaction k2 is predominating in low temperatures and leads to 11

12 char and gas, and in air to smoldering combustion. The reaction k3 is predominating in high temperatures. The residual of this reaction is tar and in air the combustion is flaming. The propotion of the residuals depends on the temperatures and of course, on the Arrhenius parameters. This data is also generated by simulator and the parameters used are listed in table 2. The other parameters to build FDS input file are presented in table 3 A1 E1 A2 E2 A3 E3 2.8E19 s E5 J/mol 1.3E10 s E5 J/mol 3.23E14 s E5 J/mol Table 2: Cellulose: The known parameters. n 1 1 n 2 1 n 3 1 emissivity 1 density 400 conductivity 0.17 specific heat 2.3 residue 1 yield 1 residue 2 yield 0.35 residue 3 yield 0 Table 3: Cellulose: FDS input file parameters. The third material is used for cable sheaths. This material is a mixture of combustible cable material and non-combustible additive that is used for flame retardant of the cable. When the material is heated, the additive material degrades releasing mainly water gas. The degradation reaction is endothermic, and thus delays or prevents the heating of the cable to temperatures required for the degradation of the solid. The reactions are BOUNDW AT ER k1 W AT ERGAS SOLID k2 F UEL 12

13 The data of this material is produced in real TGA test and therefore, the correct values of the reaction parameters are not known. The FDS input file parameters are listed in table 4. Parameter BOUND WATER SOLID n 1 1 emissivity 1 1 density conductivity specific heat residue yield fuel yield water yield 1 0 Table 4: Cable sheath: FDS input file parameters. 13

14 5.2 Effect of the GA parameters GA needs many parameters and some of the most interesting of them are the number of subpopulation and the mutation rate. They may effect considerably to performance of algorithm and therefore they are studied carefully. The tests are started using equation 3. It soon becomes clear that at least few subpopulations are needed to maintain enough variety in the population. In figure 6 it is seen how fast the average is converging near the best individual even the solution could be much better. In this test, the population size was 50. The later tests were made with 4 subpopulations of 20 individuals in each. Figure 6: Average and the best fitness value of every generation. The average converges really fast. The effect of the mutation rate is not as clear. Originally it is set to 1/6 (one divided by the number of variables) and it works fine. Too high mutation rate causes so many mutations that even the best chromosomes are lost. On the other hand the low mutation rate can not prevent the fast convergence to wrong value. 14

15 5.3 Effect of fitness function Simulation of the cellulosic material was to used to study the proper weighting of the fitness function. Many combinations of weights were tested and good solutions were found using weights [1/2 1/2 0] and [1/3 1/3 1/3]. However, it may not be necessary to take into account all the parts of the fitness function. Actually, calculating the fitness values only according the first part of the fitness function (w=[1 0 0]), the solutions are very good. The best individual is shown in figure 7 and its gradient in figure 8. Even the gradient was not included directly to the fitness function, the algorithm found quite good fit. Figure 7: Cellulose: The best individual when only TGA data is compared. 15

16 Figure 8: Cellulose: The gradient when only TGA data is compared with heating rate 2 K/min. 16

17 5.4 Consistency of resulting The consistency of the GA results was studied by repeating the GA for cellulose several times, and comparing best individuals to each other. The comparison showed that resulting parameters may be different even though the corresponding TGA graphs look very similar. This demonstrates that the parameters producing the TGA curve are not unambiguous. Figure 9 shows three parameters A of reactions of cellulose in eight tests. The tests 3 and 6 evoked good results and it can be seen how ratios of A s are similar to those of the original data. The A s of less fitting solutions are having a different ratios. The same happens with parameter E. This suggests that the value of parameter does not matter - but the ratio between parameters does. Figure 9: Cellulose: The best A s of different tests. The water evaporation with only one reaction reveals more about the dependency of parameters. A solution found by GA is shown in figure 10 and the parameters are A = E+17 and E = 1.79E+5. There is a strong dependence, also known as compensation effect, between A and E of same reaction. Figure 11 shows the surface of fitness values calculated through the space of A and E. It can be seen that the smallest fitness values form a straight line in A-E phase. This means that all the good solutions for this problem have the same ratio of A and E. Now it is interesting to know how the fitness value behaves if this ratio changes. In figure 12 is presented fitness 17

18 Figure 10: Water evaporation: The solution by GA. value as function of E when A is kept constant. The fitness value changes quite linearly and fast when the ratio changes. Of course this ratio is different to every reaction so there can not be found any general rule. If there can be various parameters that model similar TGA graph, what would be the optimal choice? As the goal is to be able to model the real fires, it would be important that the same parameters model correctly bigger scale tests as well. An easy way to check this is to simulate a cone test using parameters from the best solutions. In figure 13 is plotted cone tests for cellulose with the best parameters of the tests. The solutions are good also for cone test, but a different amount of fluctuations can be observed. Significant fluctuation can make the large scale fire simulation unstable and so the best solution would have it as little as possible. Usually smaller parameters A are causing less fluctuation. Therefore the next step is to make the algorithm prefer smaller A s without loosing the fitness of solutions. To make the algorithm prefer smaller A s, a penalty is added to fitness function. The penalty is linear in logarithmic scale of A so that A = has zero penalty and A = has a penalty of 1. If there are several significant reactions every A should have a penalty and the final penalty of A s is their average. This penalty should be weighted appropriately so that it does not dominate the GA. 18

19 Figure 11: Water evaporation: Surface of fitness values. The effect of A should be of the same order than the differences in fitness values, order of Many weights are studied and good solutions are found with weights of the area [1/1000, 20/1000]. Figure 14) shows a solution with weight 1/1000 (parameters presented in table 5). The cone test (figure 15) shows that the parameters are a good model and the fluctuation is not anymore remarkable. A1 E1 A2 E2 A3 E E+14 s E+5 J/mol 2.95E+10 s E+5 J/mol E+15 s E+5 J/mol Table 5: Cellulose: Optimal parameters when A has weight 1/

20 Figure 12: Water evaporation: The values of fitness function when A is constant and E changes. Figure 13: Cellulose: Cone tests with the parameters of best solutions. 20

21 Figure 14: Cellulose: Best solution when the penalty of A is having a weight of 1/1000. Figure 15: Cellulose: Cone test of solution when A has weight of 1/

22 5.5 Application on the real cable material The algorithm was applied on the estimation reaction parameters of the cable material described in section 5.1. Until now in the examples all the reactions have taken place in the same area of temperature and there were not more than one peaks in the gradient. In cable material, two reaction happens one after another. In addition, the data was not generated by simulator but in real TGA test. Figure 16 shows a model to this data found by genetic algorithm and the parameters are listed in table 6. Even the solution found by algorithm follows the experimental data mostly correctly, the reactions seem to be sharper than they should. The problem remains the same even the test is repeated many times, the model is always more angular than the experimental data. This can mean that the real material behavior is not modeled properly in FDS. There may be some additional unknown reaction or some of the other parameters is not correct. The gradients do not look quite same either (figure 17). In experimental data there is much more noise that causes less smooth gradient. The area of integrals are more or less equal and the peaks are in right place anyway. A1 E1 A2 E E+12 s E+05 J/mol 1.85E+10 s E+05 J/mol Table 6: Cable sheath: Parameters found by GA. 22

23 Figure 16: Cable sheath: Comparison of experimental and predicted TGA curves. Figure 17: Cable sheath: The gradients. 23

24 5.6 Finding other parameters than A and E The tests so far have concentrated on finding parameters A and E of Arrhenius equation. However, there can be many other unknown parameters in FDS input file as well. One of them is the residue mass. If the reactions overlap in temperature, the residuals in the graph can not be found. When the residue of reaction k2 of cellulose was set to be variable (originally 0.35), the algorithm found solution shown in figure 18. The parameters are shown in table 7. The residual of the reaction k2 is now found to be even the real value should be The TGA graph looks correct anyway and so does the cone test graph (figure 19). The residual mass depends on which of the two reactions is dominating. Only the reaction k2 has a residual. Here the algorithm has found a solution where all the residual mass is from the reaction k2 so that reaction is fully dominating. As the algorithm compares only the graphs, it can not find any better solution without knowing more about the material and reactions. A1 1.0E+10 s 1 E1 1.33E+5 J/mol A E+14 s 1 E2 2.04E+5 J/mol r A E+17 s 1 E E+5 J/mol Table 7: Cellulose: Parameters when also residual of second reaction is variable. Another studied parameter is the reaction order n. Usually n is getting values between [0.5, 1.5] but there is no reason why it could not be smaller or bigger as well. n determines how steep is the TGA graph in the temperature space. In figure 20 is plotted cable sheath data simulated with 3 different reaction order n 1 (0.5, 1, 1.5) when n 2 was set to 1. To study how the algorithm manages to find these parameters, n 1 and n 2 was set to be variables between [0,3]. In figure 21 is shown the solution that algorithm found for a problem where n 1, n 2 and the residual mass of second reaction are variables. The parameters are listed in table 8. The model is a bit better than without variating these parameters (figure 16). 24

25 Figure 18: Cellulose: Best individual when residual of second reaction is also variable. A E+14 s 1 E1 1.94E+5 J/mol A E+15 s 1 E2 2.47E+5 J/mol n n r Table 8: Cable sheath: Parameters when n 2 was also variable. 25

26 Figure 19: Cellulose: Cone test when residual mass is found by algorithm. Figure 20: Cable sheath: The effect of first reaction order. 26

27 Figure 21: Cable sheath: Solution of algorithm when also reaction orders n 1, n 2 and residual mass r 2 were variables. 27

28 5.7 Using the algorithm The algorithm seems to work well even for big problems. It is however stochastic so it is not guaranteed that it always finds a good solution, nor that the solution is found during the first 500 generations. If the best model of the current generation is plotted while the algorithm is running, user can observe the process. If the solution seems not to be even close after hundreds of generations, it may be better to stop it and start from the beginning. On the other hand, if the solution is already satisfying, there is no need to continue. The algorithm is comparing graphs and if the graph looks good enough, the solution would not be later any better anyway. The disadvantage of the algorithm is that it is computationally expensive. It calls FDS for every chromosome and to every burning rate of the original data separately while calculating the fitness values. To run this algorithm effectively a fast computer is needed. Another difficulty is that the material behavior must be known to be able to write the FDS input file. At least the amount of reactions and some of the material parameters must be correct. 6 Conclusions The goal was to apply genetic algorithm to find the kinetic parameters of materials for modeling them in FDS5. The GA worked well especially when the material behavior was exactly known. It found many suitable sets of parameters among of which the smallest ones were preferred because they affect less fluctuation. It seems that the kinetic parameters of material should not be understood as any fundamental constant but as parameters that model the material correctly. It is not proved yet that the parameters found by algorithm are really modeling big scale fires correctly. The smaller tests and simulations seem to work fine anyway and that is promising. The next step is to validate parameters by making bigger scale tests and simulations. 28

29 References [1] Lautenberger, C., Rein, G., Fernandez-Pello, C. The application of a genetic algorithm to estimate material properties for fire modeling from bench-scale fire test data. Fire Safety Journal 41 (2006) [2] Rein, G., Lautenberger, C., Fernandez-Pello, C., Torero, J., Urban, D. Application of genetic algorithms and thermogravimetry to determine the kinetics of polyurethane foam in smoldering combustion. Combustion and Flame 146 (2006) [3] McGrattan, K., Hostikka, S., Floyd, J., Baum, H. and Rehm, R. Fire Dynamics Simulator (Version 5) Technical Reference Guide. National Instititute of Standards and Technology, MD. USA. NIST Special Publication p. (Draft: August 26, 2007). [4] Kellner, R., Mermet J.-M., Otto, M., Valcárcel, M., Widmer H. M. Analytical Chemistry: A Modern Approach to Analytical Science, Second editition. (2004) [5] Reeves, Colin R., Rowe, Jonathan E. Genetic algorithms - principles and perspective (2002). [6] Di Blasi, C. Physico-chemical processes occuring inside a degrading two-dimensional anisotropic porous medium. Internationa Journal of Heat and Mass Transfer 41 (1998)

Pyrolysis Modelling of PVC Cable Materials

Pyrolysis Modelling of PVC Cable Materials Pyrolysis Modelling of PVC Cable Materials ANNA MATALA, and SIMO HOSTIKKA VTT Technical Research Centre of Finland P.O.Box 1000 FI-02044 VTT, Finland ABSTRACT One of the most commonly used materials in

More information

Modeling of the pyrolysis of plywood exposed to heat fluxes under cone calorimeter

Modeling of the pyrolysis of plywood exposed to heat fluxes under cone calorimeter Modeling of the pyrolysis of plywood exposed to heat fluxes under cone calorimeter TALAL FATEH, FRANCK RICHARD, and THOMAS ROGAUME Institut Pprime / Département FTC Téléport 2-1, avenue Clément Ader, 86961

More information

ONE-DIMENSIONAL MODEL OF PYROLYSIS AND IGNITION OF MEDIUM DENSITY FIBERBOARD SUBJECTED TO TRANSIENT IRRADIATION

ONE-DIMENSIONAL MODEL OF PYROLYSIS AND IGNITION OF MEDIUM DENSITY FIBERBOARD SUBJECTED TO TRANSIENT IRRADIATION ONE-DIMENSIONAL MODEL OF PYROLYSIS AND IGNITION OF MEDIUM DENSITY FIBERBOARD SUBJECTED TO TRANSIENT IRRADIATION Izabella Vermesi, Gaurav Agarwal, Marcos Chaos, and Guillermo Rein 1 Imperial College London

More information

Thermal Methods of Analysis

Thermal Methods of Analysis Thermal Methods of Analysis Calorie-something we know What is calorie? Can you see or touch a calorie? How is it measured? Working out in gym Change in weight Loss of calories-burning of fat? (10 km=500calories/9cal

More information

The State of Art model Fire Dynamics Simulator: Feasibility of Introduction of New RAMP and Tabular Functions.

The State of Art model Fire Dynamics Simulator: Feasibility of Introduction of New RAMP and Tabular Functions. The State of Art model Fire Dynamics Simulator: Feasibility of Introduction of New RAMP and Tabular Functions. A. S. Abu-Bakar and K. A. M. Moinuddin Centre for Environmental and Risk Engineering, College

More information

ABSTRACT. Mark B. McKinnon, Master of Science, Department of Fire Protection Engineering

ABSTRACT. Mark B. McKinnon, Master of Science, Department of Fire Protection Engineering ABSTRACT Title of dissertation: DEVELOPMENT OF A MODEL FOR FLAMING COMBUSTION OF DOUBLE-WALL CORRUGATED CARDBOARD Mark B. McKinnon, Master of Science, 2012 Dissertation directed by: Professor Stanislav

More information

ABSTRACT. Robert Dale Webster, Jr. Master of Science, an input parameter set to a finite difference one-dimensional model of transient

ABSTRACT. Robert Dale Webster, Jr. Master of Science, an input parameter set to a finite difference one-dimensional model of transient ABSTRACT Title of Document: PYROLYSIS MODEL PARAMETER OPTIMIZATION USING A CUSTOMIZED STOCHASTIC HILL-CLIMBER ALGORITHM AND BENCH SCALE FIRE TEST DATA Robert Dale Webster, Jr. Master of Science, 2009 Directed

More information

Comparison of competitive and non-competitive char formation in polymer combustion

Comparison of competitive and non-competitive char formation in polymer combustion Comparison of competitive and non-competitive char formation in polymer combustion S.D.WATT*, J.E.J. STAGGS*, A.C. MCINTOSH* and J. BRINDLEY +, *Department of Fuel and Energy, University of Leeds, Leeds

More information

A Numerical Study of Solid Fuel Pyrolysis under Time Dependent Radiant Heat Flux Conditions

A Numerical Study of Solid Fuel Pyrolysis under Time Dependent Radiant Heat Flux Conditions 7FR-75 Topic: Fire 8 th U. S. National Combustion Meeting Organized by the Western States Section of the Combustion Institute and hosted by the University of Utah May 19-, 13 Numerical Study of Solid Fuel

More information

Genetic Algorithms. Seth Bacon. 4/25/2005 Seth Bacon 1

Genetic Algorithms. Seth Bacon. 4/25/2005 Seth Bacon 1 Genetic Algorithms Seth Bacon 4/25/2005 Seth Bacon 1 What are Genetic Algorithms Search algorithm based on selection and genetics Manipulate a population of candidate solutions to find a good solution

More information

Chapter 8: Introduction to Evolutionary Computation

Chapter 8: Introduction to Evolutionary Computation Computational Intelligence: Second Edition Contents Some Theories about Evolution Evolution is an optimization process: the aim is to improve the ability of an organism to survive in dynamically changing

More information

Chapter 8: Reaction Rates and Equilibrium

Chapter 8: Reaction Rates and Equilibrium Chapter 8: Reaction Rates and Equilibrium ACTIVATION ENERGY In some reaction mixtures, the average total energy of the molecules is too low at the prevailing temperature for a reaction to take place at

More information

Date: SCH 4U Name: ENTHALPY CHANGES

Date: SCH 4U Name: ENTHALPY CHANGES Date: SCH 4U Name: ENTHALPY CHANGES Enthalpy (H) = heat content of system (heat, latent heat) Enthalpy = total energy of system + pressure volume H = E + PV H = E + (PV) = final conditions initial conditions

More information

Chapter 6 Thermochemistry 許富銀

Chapter 6 Thermochemistry 許富銀 Chapter 6 Thermochemistry 許富銀 6.1 Chemical Hand Warmers Thermochemistry: the study of the relationships between chemistry and energy Hand warmers use the oxidation of iron as the exothermic reaction: Nature

More information

Numerical Examination of Two-Dimensional Smolder Structure in Polyurethane Foam

Numerical Examination of Two-Dimensional Smolder Structure in Polyurethane Foam Numerical Examination of Two-Dimensional Smolder Structure in Polyurethane Foam A. B. Dodd 1,2,a, C. Lautenberger 2, and A.C. Fernandez-Pello 2 1 Sandia National Laboratories b, Albuquerque, NM, 87185

More information

What is energy??? The ability to do work or produce heat. Potential Energy (PE) energy due to position or composition

What is energy??? The ability to do work or produce heat. Potential Energy (PE) energy due to position or composition Chapter 10: Energy What is energy??? The ability to do work or produce heat. Potential Energy (PE) energy due to position or composition Kinetic Energy (KE) energy due to motion Law of Conservation of

More information

Chemistry 101 Chapter 10 Energy

Chemistry 101 Chapter 10 Energy Chemistry 101 Chapter 10 Energy Energy: the ability to do work or produce heat. Kinetic energy (KE): is the energy of motion. Any object that is moving has kinetic energy. Several forms of kinetic energy

More information

CHEMISTRY: Chapter 10 Prep-Test

CHEMISTRY: Chapter 10 Prep-Test CHEMISTRY: Chapter 10 Prep-Test Matching Match each item with the correct statement below. a. calorimeter d. temperature b. calorie e. specific heat c. joule f. heat 1. quantity of heat needed to raise

More information

Crossover Techniques in GAs

Crossover Techniques in GAs Crossover Techniques in GAs Debasis Samanta Indian Institute of Technology Kharagpur dsamanta@iitkgp.ac.in 16.03.2018 Debasis Samanta (IIT Kharagpur) Soft Computing Applications 16.03.2018 1 / 1 Important

More information

Evolutionary computation

Evolutionary computation Evolutionary computation Andrea Roli andrea.roli@unibo.it DEIS Alma Mater Studiorum Università di Bologna Evolutionary computation p. 1 Evolutionary Computation Evolutionary computation p. 2 Evolutionary

More information

Lecture 15: Genetic Algorithms

Lecture 15: Genetic Algorithms Lecture 15: Genetic Algorithms Dr Roman V Belavkin BIS3226 Contents 1 Combinatorial Problems 1 2 Natural Selection 2 3 Genetic Algorithms 3 31 Individuals and Population 3 32 Fitness Functions 3 33 Encoding

More information

Thermo-Kinetic Model of Burning for Polymeric Materials

Thermo-Kinetic Model of Burning for Polymeric Materials Thermo-Kinetic Model of Burning for Polymeric Materials Stanislav I. Stoliarov a, Sean Crowley b, Richard Lyon b a University of Maryland, Fire Protection Engineering, College Park, MD 20742 b FAA W. J.

More information

Major questions of evolutionary genetics. Experimental tools of evolutionary genetics. Theoretical population genetics.

Major questions of evolutionary genetics. Experimental tools of evolutionary genetics. Theoretical population genetics. Evolutionary Genetics (for Encyclopedia of Biodiversity) Sergey Gavrilets Departments of Ecology and Evolutionary Biology and Mathematics, University of Tennessee, Knoxville, TN 37996-6 USA Evolutionary

More information

Introduction to Digital Evolution Handout Answers

Introduction to Digital Evolution Handout Answers Introduction to Digital Evolution Handout Answers Note to teacher: The questions in this handout and the suggested answers (in red, below) are meant to guide discussion, not be an assessment. It is recommended

More information

High Pressure DSC Differential Scanning Calorimeter

High Pressure DSC Differential Scanning Calorimeter High Pressure DSC Differential Scanning Calorimeter Introduction The Differential Scanning Calorimetry (DSC) is the most popular thermal analysis technique to measure endothermic and exothermic transitions

More information

Computational statistics

Computational statistics Computational statistics Combinatorial optimization Thierry Denœux February 2017 Thierry Denœux Computational statistics February 2017 1 / 37 Combinatorial optimization Assume we seek the maximum of f

More information

Multi-objective genetic algorithm

Multi-objective genetic algorithm Multi-objective genetic algorithm Robin Devooght 31 March 2010 Abstract Real world problems often present multiple, frequently conflicting, objectives. The research for optimal solutions of multi-objective

More information

Department of Mechanical Engineering, University Visvesvaraya College of Engineering, Bangalore University, Bangalore, Karnataka, India

Department of Mechanical Engineering, University Visvesvaraya College of Engineering, Bangalore University, Bangalore, Karnataka, India EXPERIMENTAL INVESTIGATION ON EFFECTS OF HEAT FLUX AND DENSITY ON SMOLDERING OF COTTON Ramesh D K *1, Manjunath S O #1, Sanjay R #2, Sai Naveen S #3, Jayantha #4 * Associate professor, # BE Scholar Department

More information

3. Increased surface area (1) more collisions (1) 2

3. Increased surface area (1) more collisions (1) 2 3. Increased surface area (1) more collisions (1) 2 Mill Hill High School 1 [9] (c) (i) 2H 2 O 2 2H 2 O + O 2 1 (ii) Speeds up (alters the rate of) a chemical reaction 1 Remains unchanged (or not used

More information

Pyrolysis modeling, thermal decomposition, and transport processes in combustible solids

Pyrolysis modeling, thermal decomposition, and transport processes in combustible solids CHAPTER 6 Pyrolysis modeling, thermal decomposition, and transport processes in combustible solids C. Lautenberger & C. Fernandez-Pello University of California, Berkeley, USA. Abstract In a fire, combustion

More information

GLOWING AND FLAMING AUTOIGNITION OF WOOD

GLOWING AND FLAMING AUTOIGNITION OF WOOD Proceedings of the Combustion Institute, Volume 29, 2002/pp. 289 296 GLOWING AND FLAMING AUTOIGNITION OF WOOD N. BOONMEE and J. G. QUINTIERE Department of Fire Protection Engineering University of Maryland

More information

Population Genetics & Evolution

Population Genetics & Evolution The Theory of Evolution Mechanisms of Evolution Notes Pt. 4 Population Genetics & Evolution IMPORTANT TO REMEMBER: Populations, not individuals, evolve. Population = a group of individuals of the same

More information

Chemical Energetics. First Law of thermodynamics: Energy can be neither created nor destroyed but It can be converted from one form to another.

Chemical Energetics. First Law of thermodynamics: Energy can be neither created nor destroyed but It can be converted from one form to another. Chemical Energetics First Law of thermodynamics: Energy can be neither created nor destroyed but It can be converted from one form to another. All chemical reactions are accompanied by some form of energy

More information

Measuring and Expressing Enthalpy Changes. Copyright Pearson Prentice Hall. Measuring and Expressing Enthalpy Changes. Calorimetry

Measuring and Expressing Enthalpy Changes. Copyright Pearson Prentice Hall. Measuring and Expressing Enthalpy Changes. Calorimetry Measuring and Expressing Enthalpy Changes A burning match releases heat to its surroundings in all directions. How much heat does this exothermic reaction release? You will learn to measure heat flow in

More information

Dec 4 9:41 AM. Dec 4 9:41 AM. Dec 4 9:42 AM. Dec 4 9:42 AM. Dec 4 9:44 AM. Dec 4 9:44 AM. Mostly coal, petroleum and natural gas

Dec 4 9:41 AM. Dec 4 9:41 AM. Dec 4 9:42 AM. Dec 4 9:42 AM. Dec 4 9:44 AM. Dec 4 9:44 AM. Mostly coal, petroleum and natural gas Quality vs Quantity of Energy Your textbook discusses the idea that although energy is conserved we face an energy crisis because the quality of energy we have available to do work like heat our homes

More information

Calorimetry: differential scanning calorimetry (DSC), isothermal titration calorimetry (ITC)

Calorimetry: differential scanning calorimetry (DSC), isothermal titration calorimetry (ITC) Calorimetry: differential scanning calorimetry (DSC), isothermal titration calorimetry (ITC) Dr. Yin Li Department of Biophysics, Medical School University of Pecs Thermal Analysis IUPAC definition - a

More information

3.2 Calorimetry and Enthalpy

3.2 Calorimetry and Enthalpy 3.2 Calorimetry and Enthalpy Heat Capacity Specific heat capacity (c) is the quantity of thermal energy required to raise the temperature of 1 g of a substance by 1 C. The SI units for specific heat capacity

More information

Chem 5 Fall This reaction is a (circle ONE) (2) Acid-Base Reaction Precipitation Reaction Redox Reaction

Chem 5 Fall This reaction is a (circle ONE) (2) Acid-Base Reaction Precipitation Reaction Redox Reaction 1. (16) Draw Lewis structures for FOUR of the following molecules or ions. Include all important resonance forms. Clearly label EVERY atom with its formal charge. The FIRST eight structures that you write

More information

Thermodynamics. Thermodynamics1.notebook. December 14, Quality vs Quantity of Energy

Thermodynamics. Thermodynamics1.notebook. December 14, Quality vs Quantity of Energy Thermodynamics Quality vs Quantity of Energy Your textbook discusses the idea that although energy is conserved we face an energy crisis because the quality of energy we have available to do work like

More information

RESEARCH PAPERS FACULTY OF MATERIALS SCIENCE AND TECHNOLOGY IN TRNAVA, SLOVAK UNIVERSITY OF TECHNOLOGY IN BRATISLAVA, 2017 Volume 25, Number 40

RESEARCH PAPERS FACULTY OF MATERIALS SCIENCE AND TECHNOLOGY IN TRNAVA, SLOVAK UNIVERSITY OF TECHNOLOGY IN BRATISLAVA, 2017 Volume 25, Number 40 RESEARCH PAPERS FACULTY OF MATERIALS SCIENCE AND TECHNOLOGY IN TRNAVA SLOVAK UNIVERSITY OF TECHNOLOGY IN BRATISLAVA 2017 Volume 25, Number 40 THE EFFECT OF THE HEAT FLUX ON THE SELF-IGNITION OF ORIENTED

More information

Genetic-Algorithm-Based Optimisation for Exothermic Batch Process

Genetic-Algorithm-Based Optimisation for Exothermic Batch Process Genetic-Algorithm-Based Optimisation for Exothermic Batch Process M. K. Tan, H. J. Tham and K. T. K. Teo Abstract The aim of this chapter is to optimise the productivity of an exothermic batch process,

More information

THERMOCHEMISTRY. This section explains the relationship between energy and heat, and distinguishes between heat capacity and specific heat.

THERMOCHEMISTRY. This section explains the relationship between energy and heat, and distinguishes between heat capacity and specific heat. I Name _ Date _ Class _ THERMOCHEMISTRY SECTION 17.1 THE FLOW OF ENERGY-HEAT AND WORK (pages 505-510) This section explains the relationship between energy and heat, and distinguishes between heat capacity

More information

Unit 4, Lesson 03: Collision Theory and the Rates of Chemical Reactions Homework

Unit 4, Lesson 03: Collision Theory and the Rates of Chemical Reactions Homework Unit 4, Lesson 03: Collision Theory and the Rates of Chemical Reactions Homework Page 294, Q 13 16 13. Reaction: 2 ClO (g) Cl 2 (g) + O 2 (g) Potential Energy Diagram for Decomposition of ClO (g) activated

More information

Analyzing & Testing Business Unit. Tau-R Mode for Advanced DSC Analysis Applications Newsletter 1/ /09, Dr. Stefan Schmölzer

Analyzing & Testing Business Unit. Tau-R Mode for Advanced DSC Analysis Applications Newsletter 1/ /09, Dr. Stefan Schmölzer Analyzing & Testing Business Unit Tau-R Mode for Advanced DSC Analysis Applications Newsletter 1/2009 7/09, Dr. Stefan Schmölzer Tau-R Mode for Advanced DSC Analysis Why is a correction of DSC measurements

More information

Gummy Bear Demonstration:

Gummy Bear Demonstration: Name: Unit 8: Chemical Kinetics Date: Regents Chemistry Aim: _ Do Now: a) Using your glossary, define chemical kinetics: b) Sort the phrases on the SmartBoard into the two columns below. Endothermic Rxns

More information

The Wright-Fisher Model and Genetic Drift

The Wright-Fisher Model and Genetic Drift The Wright-Fisher Model and Genetic Drift January 22, 2015 1 1 Hardy-Weinberg Equilibrium Our goal is to understand the dynamics of allele and genotype frequencies in an infinite, randomlymating population

More information

Liquids. properties & structure

Liquids. properties & structure Liquids properties & structure Energetics of Vaporization when the high energy molecules are lost from the liquid, it lowers the average kinetic energy if energy is not drawn back into the liquid, its

More information

In fact, we are going to be sneaky and use Hess s Law to determine the heat of magnesium combustion indirectly. Go to the website:

In fact, we are going to be sneaky and use Hess s Law to determine the heat of magnesium combustion indirectly. Go to the website: Chemistry 161 Please prepare your notebook though the data tables before class on Wednesday, October 27. Write an abstract and place it at the front of your individual report. The abstract and the report

More information

Kinetic Compensation Effect in the Thermal Decomposition of Biomass in Air Atmosphere

Kinetic Compensation Effect in the Thermal Decomposition of Biomass in Air Atmosphere Kinetic Compensation Effect in the Thermal Decomposition of Biomass in Air Atmosphere LIU Naian a WANG Binghong b FAN Weicheng a a State Key Laboratory of Fire Science, University of Science and Technology

More information

Phase Change Diagram. Rank Solids, liquids and gases from weakest attractive forces to strongest:

Phase Change Diagram. Rank Solids, liquids and gases from weakest attractive forces to strongest: Unit 11 Kinetic molecular theory packet Page 1 of 13 Chemistry Unit 11 Kinetic Theory Unit Quiz: Test Objectives Be able to define pressure and memorize the basic pressure units. Be able to convert to/from:

More information

Thermokinetic investigation of cellulose pyrolysis impact of initial and final mass on kinetic results

Thermokinetic investigation of cellulose pyrolysis impact of initial and final mass on kinetic results Journal of Analytical and Applied Pyrolysis 62 (2002) 165 177 www.elsevier.com/locate/jaap Thermokinetic investigation of cellulose pyrolysis impact of initial and final mass on kinetic results S. Völker

More information

exothermic reaction and that ΔH c will therefore be a negative value. Heat change, q = mcδt q = m(h 2

exothermic reaction and that ΔH c will therefore be a negative value. Heat change, q = mcδt q = m(h 2 Worked solutions hapter 5 Exercises 1 B If the temperature drops, the process must be endothermic. Δ for endothermic reactions is always positive. 2 B All exothermic reactions give out heat. While there

More information

Biology 11 UNIT 1: EVOLUTION LESSON 2: HOW EVOLUTION?? (MICRO-EVOLUTION AND POPULATIONS)

Biology 11 UNIT 1: EVOLUTION LESSON 2: HOW EVOLUTION?? (MICRO-EVOLUTION AND POPULATIONS) Biology 11 UNIT 1: EVOLUTION LESSON 2: HOW EVOLUTION?? (MICRO-EVOLUTION AND POPULATIONS) Objectives: By the end of the lesson you should be able to: Describe the 2 types of evolution Describe the 5 ways

More information

Experimental and Theoretical Study of the Ignition and Smoldering of Wood Including Convective Effects

Experimental and Theoretical Study of the Ignition and Smoldering of Wood Including Convective Effects Experimental and Theoretical Study of the Ignition and Smoldering of Wood Including Convective Effects R. BILBAO,* J. F. MASTRAL, M. E. ALDEA, J. CEAMANOS and M. BETRÁN Department of Chemical and Environmental

More information

Chapter 8 Reaction Rates and Equilibrium

Chapter 8 Reaction Rates and Equilibrium Spencer L. Seager Michael R. Slabaugh www.cengage.com/chemistry/seager Chapter 8 Reaction Rates and Equilibrium SPONTANEOUS PROCESSES Spontaneous processes are processes that take place naturally with

More information

NCEA Level 2 Biology (91157) 2017 page 1 of 5 Assessment Schedule 2017 Biology: Demonstrate understanding of genetic variation and change (91157)

NCEA Level 2 Biology (91157) 2017 page 1 of 5 Assessment Schedule 2017 Biology: Demonstrate understanding of genetic variation and change (91157) NCEA Level 2 Biology (91157) 2017 page 1 of 5 Assessment Schedule 2017 Biology: Demonstrate understanding of genetic variation and change (91157) Evidence Statement Q1 Expected coverage Merit Excellence

More information

TGA Thermal Gravimetric Analysis

TGA Thermal Gravimetric Analysis TGA Thermal Gravimetric Analysis General Thermogravimetry is a technique in which the mass of the sample is monitored against time or temperature while the temperature of the sample, in a specified atmosphere,

More information

6.3. Theories of Reaction Rates. Collision Theory. The Effect of Concentration on Reactant Rates

6.3. Theories of Reaction Rates. Collision Theory. The Effect of Concentration on Reactant Rates Theories of Reaction Rates 6.3 In section 6.2, you explored the rate law, which defines the relationship between the concentrations of reactants and reaction rate. Why, however, does the rate of a reaction

More information

Mathematics in Sixth Form Chemistry: Building Confidence

Mathematics in Sixth Form Chemistry: Building Confidence Mathematics in Sixth Form Chemistry: Building Confidence DR MARYJANE TREMAYNE SCHOOL OF CHEMISTRY, UNIVERSITY OF BIRMINGHAM, EDGBASTON, BIRMINGHAM, UK Outline Units length, volume, temperature, energy

More information

Guided Reading Chapter 1: The Science of Heredity

Guided Reading Chapter 1: The Science of Heredity Name Number Date Guided Reading Chapter 1: The Science of Heredity Section 1-1: Mendel s Work 1. Gregor Mendel experimented with hundreds of pea plants to understand the process of _. Match the term with

More information

Pre-Lab Exercises Lab 3: Chemical Properties

Pre-Lab Exercises Lab 3: Chemical Properties Pre-Lab Exercises Lab 3: Chemical Properties 1. How is a chemical property different from a physical property? Name Date Section 2. How is a chemical change different from a physical change? 3. Give two

More information

Computational Systems Biology Exam

Computational Systems Biology Exam Computational Systems Biology Exam Dr. Jürgen Pahle Aleksandr Andreychenko, M.Sc. 31 July, 2012 Name Matriculation Number Do not open this exam booklet before we ask you to. Do read this page carefully.

More information

I N N O V A T I O N L E C T U R E S (I N N O l E C) Petr Kuzmič, Ph.D. BioKin, Ltd. WATERTOWN, MASSACHUSETTS, U.S.A.

I N N O V A T I O N L E C T U R E S (I N N O l E C) Petr Kuzmič, Ph.D. BioKin, Ltd. WATERTOWN, MASSACHUSETTS, U.S.A. I N N O V A T I O N L E C T U R E S (I N N O l E C) Binding and Kinetics for Experimental Biologists Lecture 2 Evolutionary Computing: Initial Estimate Problem Petr Kuzmič, Ph.D. BioKin, Ltd. WATERTOWN,

More information

Year 10 Science Learning Cycle 3 Overview

Year 10 Science Learning Cycle 3 Overview Year 10 Science Learning Cycle 3 Overview Learning Cycle Overview: Biology Hypothesis 1 Hypothesis 2 Hypothesis 3 Hypothesis 4 Hypothesis 5 Hypothesis 6 Hypothesis 7 Hypothesis 8 Hypothesis 9 How does

More information

Scaling Up. So far, we have considered methods that systematically explore the full search space, possibly using principled pruning (A* etc.).

Scaling Up. So far, we have considered methods that systematically explore the full search space, possibly using principled pruning (A* etc.). Local Search Scaling Up So far, we have considered methods that systematically explore the full search space, possibly using principled pruning (A* etc.). The current best such algorithms (RBFS / SMA*)

More information

Name Class Date. As you read Lesson 17.1, use the cause and effect chart below. Complete the chart with the terms system and surroundings.

Name Class Date. As you read Lesson 17.1, use the cause and effect chart below. Complete the chart with the terms system and surroundings. Name Class Date Thermochemistry 17.1 The Flow of Energy As you read Lesson 17.1, use the cause and effect chart below. Complete the chart with the terms system and surroundings. Process Cause Effect endothermic

More information

THERMOCHEMISTRY & DEFINITIONS

THERMOCHEMISTRY & DEFINITIONS THERMOCHEMISTRY & DEFINITIONS Thermochemistry is the study of the study of relationships between chemistry and energy. All chemical changes and many physical changes involve exchange of energy with the

More information

Lecture 2.7 Entropy and the Second law of Thermodynamics During last several lectures we have been talking about different thermodynamic processes.

Lecture 2.7 Entropy and the Second law of Thermodynamics During last several lectures we have been talking about different thermodynamic processes. ecture 2.7 Entropy and the Second law of hermodynamics During last several lectures we have been talking about different thermodynamic processes. In particular, we have discussed heat transfer between

More information

Prediction of the Heat Release Rate of Douglas Fir

Prediction of the Heat Release Rate of Douglas Fir Prediction of the Heat Release Rate of Douglas Fir WIlliAM J. PARKER Center for Fire Research National Bureau of Standards 1 Gaithersburg, Maryland 20899, USA ABSTRACT Measurements have been made on the

More information

Thermal decomposition of Solid Fuels Fire Dynamics

Thermal decomposition of Solid Fuels Fire Dynamics Thermal decomposition of Solid Fuels Fire Dynamics Thomas Rogaume, Sophie Duquesne and many persons Thermal decomposition of solid fuels Introduction Thermal decomposition aspect Problems in the condensed

More information

Seymour Public Schools Curriculum

Seymour Public Schools Curriculum Chemistry Curriculum The intent of this unit is to demonstrate the proper use of lab materials and equipment. Also, correctly answer safety questions, demonstrate safe working practices in the lab as described

More information

Chemistry Slide 1 of 33

Chemistry Slide 1 of 33 Chemistry 17.2 1 of 33 17.2 Measuring and Expressing Enthalpy Changes A burning match releases heat to its surroundings in all directions. How much heat does this exothermic reaction release? You will

More information

Heredity and Genetics WKSH

Heredity and Genetics WKSH Chapter 6, Section 3 Heredity and Genetics WKSH KEY CONCEPT Mendel s research showed that traits are inherited as discrete units. Vocabulary trait purebred law of segregation genetics cross MAIN IDEA:

More information

Enthalpy changes

Enthalpy changes 2.3.1. Enthalpy changes In an exothermic change energy is transferred from the system (chemicals) to the surroundings. The have less energy than the If an enthalpy change occurs then energy is transferred

More information

Experimental Study on FT-IR Analysis of Chemical Species from Wooden Materials in Pre-combustion Condition

Experimental Study on FT-IR Analysis of Chemical Species from Wooden Materials in Pre-combustion Condition Experimental Study on FT-IR Analysis of Chemical Species from Wooden Materials in Pre-combustion Condition Osami Sugawa, Kyoko Kamiya Department of Mechanical Engineering, Tokyo University of Science,

More information

Section 1 - Thermochemistry

Section 1 - Thermochemistry Reaction Energy Section 1 - Thermochemistry Virtually every chemical reaction is accompanied by a change in energy. Chemical reactions usually absorb or release energy as heat. You learned in Chapter 12

More information

Guided Notes and Practice- Topi 5.1: Calorimetry and Enthalpy Calculations

Guided Notes and Practice- Topi 5.1: Calorimetry and Enthalpy Calculations Name: Date: Pd: Guided Notes and Practice- Topi 5.1: Calorimetry and Enthalpy Calculations Endothermic vs. Exothermic 1. Label each ΔH value as being exothermic or endothermic. Thermochemical Equations

More information

Laws of Thermodynamics

Laws of Thermodynamics Laws of Thermodynamics The Three Laws of Thermodynamics - The first lawof thermodynamics, also called conservation of energy. We can use this knowledge to determine the amount of energy in a system, the

More information

2012 Assessment Report. Biology Level 3

2012 Assessment Report. Biology Level 3 National Certificate of Educational Achievement 2012 Assessment Report Biology Level 3 90715 Describe the role of DNA in relation to gene expression 90716 Describe animal behaviour and plant responses

More information

(Refer Slide Time: 00:00:43 min) Welcome back in the last few lectures we discussed compression refrigeration systems.

(Refer Slide Time: 00:00:43 min) Welcome back in the last few lectures we discussed compression refrigeration systems. Refrigeration and Air Conditioning Prof. M. Ramgopal Department of Mechanical Engineering Indian Institute of Technology, Kharagpur Lecture No. # 14 Vapour Absorption Refrigeration Systems (Refer Slide

More information

B. Activation Energy: Ea

B. Activation Energy: Ea B. Activation Energy: Ea a) Example reaction: the burning of charcoal in the BBQ C (s) + O 2(g) CO 2 (remember, burning is VERY exothermic) Question: Will charcoal in your BBQ spontaneously catch fire?

More information

INTEGRATED SCIENCE 3

INTEGRATED SCIENCE 3 CALIFORNIA CONTENT STANDARDS: BIOLOGY/LIFE SCIENCES Cell Biology 4 6.7% 1. The fundamental life processes of plants and animals depend on a variety of chemical reactions that occur in specialized areas

More information

Introduction to population genetics & evolution

Introduction to population genetics & evolution Introduction to population genetics & evolution Course Organization Exam dates: Feb 19 March 1st Has everybody registered? Did you get the email with the exam schedule Summer seminar: Hot topics in Bioinformatics

More information

SUPPLEMENTARY TOPIC 3 ENERGY AND CHEMICAL REACTIONS

SUPPLEMENTARY TOPIC 3 ENERGY AND CHEMICAL REACTIONS SUPPLEMENTARY TOPIC 3 ENERGY AND CHEMICAL REACTIONS Rearranging atoms. In a chemical reaction, bonds between atoms in one or more molecules (reactants) break and new bonds are formed with other atoms to

More information

TAWN tests for quantitatively measuring the resolution and sensitivity of DSCs (version 2.1)

TAWN tests for quantitatively measuring the resolution and sensitivity of DSCs (version 2.1) TAWN tests for quantitatively measuring the resolution and sensitivity of DSCs (version 2.1) 1. Introduction There are many properties that characterise the performance of differential scanning calorimeters

More information

Fire scenarios modelling for the safe design of a passenger rail carriage

Fire scenarios modelling for the safe design of a passenger rail carriage Fire scenarios modelling for the safe design of a passenger rail carriage Andreini A., Da Soghe R., Facchini B., Giusti A. 1, L. Caruso ; G. Luconi 2, (2)- Troiano D. 3, 1, Engineering Department Sergio

More information

Information for Course Syllabus

Information for Course Syllabus Information for Course Syllabus On March 29th, Public Chapter 660 was signed into law. This new statute requires a syllabus be made publicly available for all grades six (6) through twelve (12) social

More information

Lecture Presentation. Chapter 6. Thermochemistry. Sherril Soman Grand Valley State University Pearson Education, Inc.

Lecture Presentation. Chapter 6. Thermochemistry. Sherril Soman Grand Valley State University Pearson Education, Inc. Lecture Presentation Chapter 6 Thermochemistry Sherril Soman Grand Valley State University Chemical Hand Warmers Most hand warmers work by using the heat released from the slow oxidation of iron 4 Fe(s)

More information

A MONTE CARLO STUDY OF GENETIC ALGORITHM INITIAL POPULATION GENERATION METHODS. Raymond R. Hill

A MONTE CARLO STUDY OF GENETIC ALGORITHM INITIAL POPULATION GENERATION METHODS. Raymond R. Hill Proceedings of the 1999 Winter Simulation Conference P.. arrington, H. B. Nembhard, D. T. Sturrock, and G. W. Evans, eds. MONTE CRLO STUDY O GENETIC LGORITHM INITIL POPULTION GENERTION METHODS Raymond

More information

Notes: Matter & Change (text Ch. 1 &10)

Notes: Matter & Change (text Ch. 1 &10) Name Per. Notes: Matter & Change (text Ch. 1 &10) NOTE: This set of class notes is not complete. We will be filling in information in class. If you are absent, it is your responsibility to get missing

More information

CALORIMETRY: Heat of Fusion of Ice

CALORIMETRY: Heat of Fusion of Ice Pre-Lab Discussion CALORIMETRY: Heat of Fusion of Ice When a chemical or physical change takes place, heat is either given off or absorbed That is, the change is either exothermic or endothermic It is

More information

Thermochemistry. Chapter Energy Storage and Reference. 4.2 Chemical Rxns. 4.3 Hess s law Overview

Thermochemistry. Chapter Energy Storage and Reference. 4.2 Chemical Rxns. 4.3 Hess s law Overview Chapter 4 Thermochemistry 4.1 Energy Storage and Reference Thermochemistry is the study of the energy released when the atomic-level associations are changed. A chemical reaction (rxn) is one where these

More information

Chapter 5 Test. Directions: Write the correct letter on the blank before each question.

Chapter 5 Test. Directions: Write the correct letter on the blank before each question. Chapter 5 Test Name: Date: Directions: Write the correct letter on the blank before each question. Objective 1: Explain the science of fire as it relates to energy, forms of ignition, and modes of combustion.

More information

Introduction to Thermochemistry. Thermochemistry Unit. Definition. Terminology. Terminology. Terminology 07/04/2016. Chemistry 30

Introduction to Thermochemistry. Thermochemistry Unit. Definition. Terminology. Terminology. Terminology 07/04/2016. Chemistry 30 Thermochemistry Unit Introduction to Thermochemistry Chemistry 30 Definition Thermochemistry is the branch of chemistry concerned with the heat produced and used in chemical reactions. Most of thermochemistry

More information

General Chemistry I. Dr. PHAN TẠI HUÂN Faculty of Food Science and Technology Nong Lam University. Module 4: Chemical Thermodynamics

General Chemistry I. Dr. PHAN TẠI HUÂN Faculty of Food Science and Technology Nong Lam University. Module 4: Chemical Thermodynamics General Chemistry I Dr. PHAN TẠI HUÂN Faculty of Food Science and Technology Nong Lam University Module 4: Chemical Thermodynamics Zeroth Law of Thermodynamics. First Law of Thermodynamics (state quantities:

More information

ABSTRACT. Predicting thermally thin burning of polymer using TGA/DSC. Mekyoung Kim, Master Thesis, 2006

ABSTRACT. Predicting thermally thin burning of polymer using TGA/DSC. Mekyoung Kim, Master Thesis, 2006 ABSTRACT Title of Document: Predicting thermally thin burning of polymer using TGA/DSC Mekyoung Kim, Master Thesis, 26 Directed By: James G. Quintiere, J.L. Bryan Professor, Department of Fire Protection

More information

AP CHEMISTRY LAB RATES OF CHEMICAL REACTIONS (II)

AP CHEMISTRY LAB RATES OF CHEMICAL REACTIONS (II) PURPOSE: Observe a redox reaction. AP CHEMISTRY LAB RATES OF CHEMICAL REACTIONS (II) Apply graphing techniques to analyze data. Practice computer skills to develop a data table. Determine the order of

More information

4 Energy and Rates of Chemical Reactions

4 Energy and Rates of Chemical Reactions CHAPTER 14 4 and Rates of Chemical Reactions SECTION Chemical Reactions BEFORE YOU READ After you read this section, you should be able to answer these questions: How is energy involved in a chemical reaction?

More information

Franklin Special School District Grade 7 Science

Franklin Special School District Grade 7 Science Instructional pacing guides for English Language Arts, Mathematics, Science, and Social Studies are available online at the FSSD website, which conveys detailed information by quarter. Please access these

More information

Outline of lectures 3-6

Outline of lectures 3-6 GENOME 453 J. Felsenstein Evolutionary Genetics Autumn, 007 Population genetics Outline of lectures 3-6 1. We want to know what theory says about the reproduction of genotypes in a population. This results

More information