<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="parametricstylesheet.xsl" ?>
<!DOCTYPE ParametricModels [
<!ELEMENT ParametricModels (model*)>
<!ELEMENT model (id,mname,author,email,picture,hoverpicture,date,equation,mhelp,parameters)>
<!ELEMENT id (#PCDATA)>
<!ELEMENT mname (#PCDATA)>
<!ELEMENT author (#PCDATA)>
<!ELEMENT email (#PCDATA)>
<!ELEMENT picture (#PCDATA)>
<!ELEMENT hoverpicture (#PCDATA)>
<!ELEMENT date (#PCDATA)>
<!ELEMENT equation (#PCDATA)>
<!ELEMENT mhelp (#PCDATA)>
<!ELEMENT parameters (param*)>
<!ELEMENT param (name,default,mini,maxi,unit,help,importance)>
<!ELEMENT name (#PCDATA)>
<!ELEMENT default (#PCDATA)>
<!ELEMENT mini (#PCDATA)>
<!ELEMENT maxi (#PCDATA)>
<!ELEMENT unit (#PCDATA)>
<!ELEMENT help (#PCDATA)>
<!ELEMENT importance (#PCDATA)>
]>
<ParametricModels>
<model>
	<id>engine</id>
	<mname>Generic turbofan cost model</mname>
	<author>Christophe Bru</author>
	<email>Jo.Blogs@www.ac.uk</email>
	<picture>engine.jpg</picture>
	<hoverpicture>This is a turbofan engine</hoverpicture>
	<date>24/01/2005</date>
	<equation>(15.23*(param1+32*param4)-13.24*param2-1.6*Power(param3,2))*2.874</equation>
	<mhelp>This parametric equation is applicable for costing a turbofan engine based on its thrust, weight, TSFC and bypass ratio</mhelp>
	<parameters>
		<param>
			<name>Thrust</name>
			<default>60000</default>
			<mini>10000</mini>
			<maxi>150000</maxi>
			<unit>lb</unit>
			<help>This is the thrust (in lb) that the engine must provide</help>
			<importance>50</importance>
		</param>
		<param>
			<name>Weight</name>
			<default>2500</default>
			<mini>300</mini>
			<maxi>10000</maxi>
			<unit>kg</unit>
			<help>This is the target weight (in kg) for the engine</help>
			<importance>30</importance>
		</param>
		<param>
			<name>TSFC</name>
			<default>1.1</default>
			<mini>0.5</mini>
			<maxi>3</maxi>
			<unit>lb/hr/lb</unit>
			<help>This is the target Thrust Specific Fuel Consumption (in lb/hr/lb) for the engine</help>
			<importance>20</importance>
		</param>
		<param>
			<name>Bypass Ratio</name>
			<default>9</default>
			<mini>6</mini>
			<maxi>14</maxi>
			<unit>n/a</unit>
			<help>This is the bypass ratio factor between fan and compressor exhausts</help>
			<importance>20</importance>
		</param>
	</parameters>
</model>

</ParametricModels>
