SOLARIS_Web_Simulation/simpleSim.html

103 lines
3.0 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1> I am working on it. </h1>
<form action = "simpleInput.py" method = "POST" target = "uploaded">
<h3>Reaction:</h3>
<table>
<tr>
<td>Beam </td>
<td style="text-align:right">A:</td>
<td><input type = "text" name = "beam_A" size="5"/></td>
<td style="text-align:right">Z:</td>
<td><input type = "text" name = "beam_Z" size="5"/></td>
<td style="text-align:right">Ex:</td>
<td><input type = "text" name = "beam_Ex" size="5"/></td>
<td style="text-align:left">MeV</td>
</tr>
<tr>
<td>Target</td>
<td style="text-align:right">A:</td>
<td><input type = "text" name = "target_a" size="5"/></td>
<td style="text-align:right">Z:</td>
<td><input type = "text" name = "target_z" size="5"/></td>
</tr>
<tr>
<td>Light recoil</td>
<td style="text-align:right">A:</td>
<td><input type = "text" name = "lRecoil_a" size="5"/></td>
<td style="text-align:right">Z:</td>
<td><input type = "text" name = "lRecoil_z" size="5"/></td>
</tr>
<tr>
<td>Beam Energy</td>
<td></td>
<td><input type = "text" name = "KEA" size="5"/></td>
<td style="text-align:left">MeV/u</td>
</tr>
</table>
<h3>Detector:</h3>
<table>
<tr>
<input type="radio" id="helios" name="SSType" value="HELIOS"/><label for="helios">HELIOS</label>
<br><input type="radio" id="solaris" name="SSType" value="SOLARIS"/><label for="solaris">SOLARIS</label>
</tr>
<tr>
<td>B-field </td>
<td><input type = "text" name = "Bfield" size="5"/></td>
<td style="text-align:left">T</td>
</tr>
<tr>
<td>Array Pos.</td>
<td><input type = "text" name = "posArray" size="5"/></td>
<td style="text-align:left">mm (negative for upstream)</td>
</tr>
<tr>
<td>Recoil Pos.</td>
<td><input type = "text" name = "posRecoil" size="5"/></td>
<td style="text-align:left">mm (negative for upstream)</td>
</tr>
</table>
<h3>DWBA and Ex List:</h3>
<p> How to allow as many as Ex??? may be hard coded for 5 max?</p>
<p> May be just on/off, and selection of GOP? the L transfer should put in Ex List? </p>
<table>
<tr>
<td>Incomming</td>
<td>Outgoing</td>
</tr>
<tr>
<td>
<input type="radio" id="op1" name="GOP1" value="An"/><label for="op1">An.</label>
<br><input type="radio" id="op2" name="GOP1" value="Kai"/><label for="p[2">Kai</label>
</td>
<td>
<input type="radio" id="op1" name="GOP2" value="An"/><label for="op1">An.</label>
<br><input type="radio" id="op2" name="GOP2" value="Kai"/><label for="p[2">Kai</label>
</td>
</tr>
</table>
<h3> Plot config:</h3>
<p> click boxes...</p>
<input type = "submit" value = "Submit and Run Simulation" />
</form>
</body>
</html>