⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 079-081.html

📁 遗传算法经典书籍-英文原版 是研究遗传算法的很好的资料
💻 HTML
字号:
<HTML>
<HEAD>
<META name=vsisbn content="0849398010">
<META name=vstitle content="Industrial Applications of Genetic Algorithms">
<META name=vsauthor content="Charles Karr; L. Michael Freeman">
<META name=vsimprint content="CRC Press">
<META name=vspublisher content="CRC Press LLC">
<META name=vspubdate content="12/01/98">
<META name=vscategory content="Web and Software Development: Artificial Intelligence: Other">




<TITLE>Industrial Applications of Genetic Algorithms:Optimization of a Porous Liner for Transpiration Cooling Using a Genetic Algorithm</TITLE>

<!-- HEADER -->

<STYLE type="text/css"> 
 <!--
 A:hover  {
 	color : Red;
 }
 -->
</STYLE>

<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">

<!--ISBN=0849398010//-->
<!--TITLE=Industrial Applications of Genetic Algorithms//-->
<!--AUTHOR=Charles Karr//-->
<!--AUTHOR=L. Michael Freeman//-->
<!--PUBLISHER=CRC Press LLC//-->
<!--IMPRINT=CRC Press//-->
<!--CHAPTER=5//-->
<!--PAGES=079-081//-->
<!--UNASSIGNED1//-->
<!--UNASSIGNED2//-->

<CENTER>
<TABLE BORDER>
<TR>
<TD><A HREF="076-078.html">Previous</A></TD>
<TD><A HREF="../ewtoc.html">Table of Contents</A></TD>
<TD><A HREF="081-085.html">Next</A></TD>
</TR>
</TABLE>
</CENTER>
<P><BR></P>
<P><FONT SIZE="+1"><B>GA PARTICULARS</B></FONT></P>
<P>For this project, only the basic reproduction, crossover, and mutation operators are used. The program allows the user to choose the probability of crossover and mutation. The reproduction operator is based on roulette wheel selection. Additionally, the single-point crossover operator is a random choice across the entire string of the three optimization parameters.
</P>
<P>The porosity, capillary diameter, liner thickness, and channel height and width are the optimization parameters for this system. The coding scheme for the GA manipulates these parameters with the basic genetic operators in order to generate a near optimum solution for the coolant system design.</P>
<P>The most important variables of the design parameters are the porosity and capillary diameter. These two variables affect almost every factor used in developing the fitness function for transpiration cooling. Because of their important bond to one another, the capillary diameter and porosity are set as the first two parameters in the chromosome string. The channel height and width are placed at the third and fourth positions in the parameter string. The less influential liner thickness will be set as the final parameter in the string.</P>
<P>The GA is set up to allow the user to determine the number of bits in a binary system to be manipulated for each parameter. The range for each of the variables is also a user-defined input. The number of bits chosen for each parameter determines the precision of the parameter. This format is known as a multi-parameter, mapped, fixed-point coding scheme. Using a section of code similar to that of the multiparameter coding used in Goldberg&#146;s text [8], the number of bits discretizes each parameter between the minimum and maximum values for that parameter. However, a limit of ten bits is set for each parameter to avoid excessive destruction of schemata under the crossover operator.</P>
<P>The fitness function can be described by the two primary concerns stated earlier in the proposal. In order to optimize the system, the genetic string must satisfy the constraints set by the pressure drop and the injection velocity. The pressure drop needs to remain as close to the minimum as possible without going below the range of stability. The injection velocity will need to remain low so that the capillary diameters remain realistic.</P>
<P>The computer model used to evaluate the input parameters consists of the following parts:</P>
<DL>
<DD><B>1.</B>&nbsp;&nbsp;The fluid properties for the combustion and coolant fluids
<DD><B>2.</B>&nbsp;&nbsp;The transport properties for the combustion gases
<DD><B>3.</B>&nbsp;&nbsp;The required coolant flowrate for adequate cooling of the chamber
<DD><B>4.</B>&nbsp;&nbsp;The chamber pressure and wall gas temperature conditions
</DL>
<P>Parts 1 and 2 listed above are attained from the ODE code. The coolant properties, chamber pressure, and wall gas temperature are constants set by the design team. The coolant flowrate properties are attained through the methods mentioned in the mass flow calculations section. A computer model of the thrust-chamber and nozzle assembly is created for use as the fitness function in the GA.
</P>
<P>Using the computer model data presented in the previous paragraphs, the fitness function must be developed to optimize the porous liner for the thrust chamber. The format set up for this particular GA is a maximization function based on the pressure drop and injection velocity for the liner. The details for this maximization are given below.</P>
<P>The pressure drop constraint is a simple minimization function, g(x), with an additional upper limit constraint, C<SUB><SMALL>max</SMALL></SUB>. In other words, the optimum solution must remain below the maximum allowable pressure drop while remaining as close to the minimum mark as possible. The maximum and minimum allowable pressure drops were given in the previous section. The general equation for the minimization of a function under a maximization scheme is</P>
<P ALIGN="CENTER"><IMG SRC="images/05-09d.jpg"></P>
<P>where C<SUB><SMALL>max</SMALL></SUB> is the maximum value of the function g(x), g(x) is the function evaluation to be minimized, and f(x) is the resulting maximization function. Using this equation,</P>
<DL>
<DD>If g(x)&lt;C<SUB><SMALL>max</SMALL></SUB>, then f(x) is maximized as g(x) gets smaller
<DD>If g(x)&gt;C<SUB><SMALL>max</SMALL></SUB>, then f(x) is multiplied by a penalty function
</DL>
<P>In this case,
</P>
<DL>
<DD>g(x) = pressure drop
<DD>C<SUB><SMALL>max</SMALL></SUB> = maximum pressure drop
</DL>
<P>The pressure drop must also be greater then 5%. Thus,
</P>
<DL>
<DD>If g(x)&gt;5%, then f(x) is maximized as g(x) gets smaller
<DD>If g(x)&lt;5%, then f(x) is multiplied by a penalty function
</DL>
<P>The injection velocity constraint is a minimization problem as well with a specified upper limit. Once again, Equation (5.9) is used where,
</P>
<DL>
<DD>g(x) = injection velocity
<DD>C<SUB><SMALL>max</SMALL></SUB> = maximum injection velocity
</DL>
<P>A conditional statement is set up to ensure that the injection velocity remains below the upper limit. So,
</P>
<DL>
<DD>If g(x)&lt;C<SUB><SMALL>max</SMALL></SUB>, then f(x) is maximized as g(x) gets smaller
<DD>If g(x)&gt;C<SUB><SMALL>max</SMALL></SUB>, then f(x) is multiplied by a penalty function
</DL>
<P>Once each constraint&#146;s function is determined, the functions are added together to analyze the best total fitness values. Fitness scaling for the various constraint functions is achieved via a weighting constant for each function evaluation. The weighting values will be determined through testing. The result is the fitness equation, Equation (5.10).
</P>
<P ALIGN="CENTER"><IMG SRC="images/05-10d.jpg"></P>
<P>Following this evaluation, reproduction, crossover, and mutation are carried out in the usual manner. At the beginning of the program, the user is asked to enter a minimum number of generations to reproduce. The program will terminate under two conditions. The first is that the minimum number of generations is achieved and all of the fitness constraints specified in the pressure drop and injection velocity sections are satisfied. The second termination consideration is a hard-coded maximum number of generations set at one hundred.
</P><P><BR></P>
<CENTER>
<TABLE BORDER>
<TR>
<TD><A HREF="076-078.html">Previous</A></TD>
<TD><A HREF="../ewtoc.html">Table of Contents</A></TD>
<TD><A HREF="081-085.html">Next</A></TD>
</TR>
</TABLE>
</CENTER>

<hr width="90%" size="1" noshade>
<div align="center">
<font face="Verdana,sans-serif" size="1">Copyright &copy; <a href="/reference/crc00001.html">CRC Press LLC</a></font>
</div>
<!-- all of the reference materials (books) have the footer and subfoot reveresed -->
<!-- reference_subfoot = footer -->
<!-- reference_footer = subfoot -->

</BODY>
</HTML>

<!-- END FOOTER -->

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -