You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Program described in the jounal paper, "POLY2TET: A Computer Program for Conversion of Computational Human Phantoms from Polygonal Mesh to Tetrahedral Mesh", submitted to Journal of Radiological Protection.
3
+
4
+
## Installation
5
+
Installation can be done very simply by two lines below.
6
+
```
7
+
cmake .
8
+
make
9
+
```
10
+
## Usage
11
+
```
12
+
./POLY2TET [options] MRCP_AM.obj
13
+
options:
14
+
-g : generate Geant4 code
15
+
-m : generate MCNP6 input file
16
+
-p : generate PHITS input file
17
+
-c : positive integer number to replace zero-region number (and not defined regions, when used as -rc)
18
+
-mat/m : material file in MCNP6 format
19
+
-mat/p : material file in PHITS format (will be implemented very soon)
20
+
```
21
+
## Monte Carlo dose calculation
22
+
For the Monte Carlo dose calculations, the corresponding code should be installed in the computer.
23
+
### MCNP6 (> version 6 / to use um file: > version 6.2)
24
+
Go to the folder where MCNP6 input file is generated, and then execute MCNP6 with the input file named (phantom_name)_MPNP6.i.
25
+
```
26
+
MCNP6 n=(phantom_name)_MCNP6.i
27
+
```
28
+
### PHITS (> version 2.88)
29
+
Go to the folder where PHITS input file is generated, and then execute PHITS with the input file named (phantom_name)_PHITS.pin.
30
+
```
31
+
phits.sh (phantom_name)_PHITS.pin
32
+
```
33
+
### Geant4 (> version 10.0)
34
+
In the folder where Geant4 source code is generated, compile the source code for Geant4 first, and execute the code with the lines below.
0 commit comments