-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProcessFlow.xml
42 lines (42 loc) · 1.07 KB
/
ProcessFlow.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<ProcessFlow name='Crude Oil Refining'>
<Area name='Atmospheric Distillation'>
<Input name='Crude Oil'/>
<Flow to='Vacuum Distillation'/>
<Flow to='Kerosene Hydrocracker'/>
<Flow to='Naphtha Hydrotreater'/>
</Area>
<Area name='Vacuum Distillation'>
<Flow to='Coker'/>
<Flow to='Fluid Catalytic Cracker'/>
</Area>
<Area name='Coker'>
<Flow to='Hydrocracker'/>
<Flow to='Diesel Hydrotreater'/>
</Area>
<Area name='Fluid Catalytic Cracker'>
<Flow to='Diesel Hydrotreater'/>
<Flow to='Gasoline Hydrotreater'/>
</Area>
<Area name='Hydrocracker'>
<Output name='Heavy Oils' />
</Area>
<Area name='Diesel Hydrotreater'>
<Output name='Diesel' />
</Area>
<Area name='Gasoline Hydrotreater'>
<Output name='Gasoline' />
</Area>
<Area name='Kerosene Hydrocracker'>
<Output name='Kerosene' />
</Area>
<Area name='Naphtha Hydrotreater'>
<Flow to='Naphtha Reformer'/>
<Flow to='Isomerization Unit'/>
</Area>
<Area name='Naphtha Reformer'>
<Output name='Naphtha' />
</Area>
<Area name='Isomerization Unit'>
<Output name='Kerosene' />
</Area>
</ProcessFlow>