<?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>bolt</id>
	<mname>Generic bolt cost model</mname>
	<author>Christophe Bru</author>
	<email>Jo.Blogs@www.ac.uk</email>
	<picture>bolt.jpg</picture>
	<hoverpicture>This is a bolt</hoverpicture>
	<date>24/01/2005</date>
	<equation>(1.3+2.1*param1)*(param2/15.9+param3/13.4)</equation>
	<mhelp>This parametric equation returns the cost of the bolt based on its length and diameter. It is suitable to both aerospace and standard quality bolts.</mhelp>
	<parameters>
		<param>
			<name>Aerospace quality</name>
			<default>1</default>
			<mini>0</mini>
			<maxi>1</maxi>
			<unit>Y/N</unit>
			<help>Enter 0 if aerospace quality is not required, 1 if it is</help>
			<importance>40</importance>
		</param>
		<param>
			<name>Length</name>
			<default>1</default>
			<mini>25</mini>
			<maxi>100</maxi>
			<unit>mm</unit>
			<help>Enter the length of the bolt</help>
			<importance>30</importance>
		</param>
		<param>
			<name>Diameter</name>
			<default>1</default>
			<mini>6</mini>
			<maxi>20</maxi>
			<unit>mm</unit>
			<help>Enter the diameter of the bolt</help>
			<importance>30</importance>
		</param>
	</parameters>
</model>
</ParametricModels>
