-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdg.dgc
More file actions
2795 lines (2676 loc) · 62 KB
/
dg.dgc
File metadata and controls
2795 lines (2676 loc) · 62 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
DivGeo config file>>
This file should not be modified manually.
DG version: 2.11a
File format version: 115
Creation time: Fri Aug 18 09:00:52 2023
Last Modified time: Fri Aug 18 09:01:44 2023
Original filename: /home/ITER/bonninx/SOLPS-ITER_2/modules/DivGeo/dg.dgc
GIT version: 3.0.8-56-gd11969d
Radial cells: 1SOL 0OSR 0TPF 0OSL 0BPF 0Core
------------------------------------------------------------------------
DgFile 115 {
; For compatibility
}
Nodes100 0
Elems100 0
XPointsEx114 0
GridPointSegs114 0
SurfaceZones114 6
1 3 1011 -1 -i -1
SOL
Inner SOL
2 1 -1 -1 -i -1
OSR
Outer SOL right
3 2 -1 -1 -i -1
TPF
Top PFR
4 2 -1 1 -i -1
OSL
Outer SOL left
5 5 -1 -1 -i -1
BPF
Bottom PFR
6 4 -1 -1 +i -1
Core
Core
SurfacesEx114 0
GridPointsEx114 0
Separators101 0
Sources104 0
Chords115 0
MarkedElems100 0
MarkedSeparators104 0
MarkedSources104 0
MarkedChords110 0
VarSetDefs101 39
Main
General Surface Data
text101 0
1 1
VarDefs102 21
refcell
Reference cell
text101 3
To be used in conjunction with ILREF=4 surfaces
Cell index in Eirene grid of the pressure reference location
(can only be found out after the Eirene grid has been imported)
Int -n+m-S-s-h-i 0 20
EnumText102
text101 0
refpress
Reference pressure
text101 2
To be used in conjunction with ILREF=4 surfaces
Reference pressure for pressure feedback loop scheme (in Pa)
Float -n+m-S-s-h-i 0 21
EnumText102
text101 0
jlsptc
Chem. sputter.
text101 4
Chemical sputtering byte of ILSPT (6B)
0: no chemical sputtering
1: standard model (constant yield)
Int -n+m-S-s-h-i 0 16
EnumText102
text101 0
jsrss
Sputtered atom
text101 8
Specification of the sputtered particle
for physical sputtering (always atom)
= 0: the wall material (but sputtered particles are not followed)
< 0: the wall material (sputtered particles are followed)
> (NATMI+NMOLI+NIONI+NPLSI): mass&charge
else: the sequential number of the atom
in the list (4A)
Int -n+m-S-s-h-i 0 15
EnumText102
text101 0
rcycsa
Phys. sput. factor
text101 2
Additional, surface-related factor for
the physical sputter yield
Float -n+m-S-s-h-i 0 14
EnumText102
text101 0
rcycca
Chem. sput. factor
text101 2
Additional, surface-related factor for
the chemical sputter yield
Float -n+m-S-s-h-i 0 17
EnumText102
text101 0
jsrsg
Surface group
text101 1
Surface group for chemical sputtering
Int -n+m-S-s-h-i 0 18
EnumText102
text101 0
jliin
Surface Type
text101 12
The surface type (ILIIN in 2.3.B)
14 : periodicity surface
3 : mirror
2 : absorbing surface
1 : material surface
0 : no action
-1 : switch in both directions
-2 : switch in positive direction + one-sided tallies
-3 : like -1 + net tallies
-4 : switch in negative direction + one-sided tallies
-5 : like -3 + gross tallies
Int -n+m-S-s-h-i 0 1
EnumText102
text101 0
jlside
Surface Side
text101 7
Treatment of different sides of the surface (ILSIDE in 3B)
0 : treat both sides according to jliin
1 : absorb particles in negative direction
2 : kill particles in negative direction + ERROR MESSAGE
3 : no interaction with such particles at all
-1 to -3 : the same for positive direction
Int -n+m-S-s-h-i 0 2
EnumText102
text101 0
jadksw
Switch-K
text101 6
K position of ILSWCH (3B)
1: increase the cell number by ILACLL after
transition in positive direction and
decrease by ILACLL in the opposite case
2: the same with reversed directions
Int -n+m-S-s-h-i 0 3
EnumText102
text101 0
jadjsw
Switch-J
text101 3
J position of the ILSWCH (3B)
Int -n+m-S-s-h-i 0 4
EnumText102
text101 0
jlacll
Cell Increment
text101 1
ILACLL (3B)
Int -n+m-S-s-h-i 0 5
EnumText102
text101 0
jlref
Reflection Model
text101 8
Particle reflection model - ILREF (6B)
1: TRIM or MARLOWE
2: Modified Behrisch Matrix
4: Pressure feedback model (using ILREF = 1 as underlying model)
9: User-defined model
If using ILREF=4, must also specify the reference pressure value and location
Int -n+m-S-s-h-i 0 12
EnumText102
text101 0
absorptn
Absorption
text101 2
Fraction of incident particles absorbed
by the wall ( = 1-RECYCT )
Float -n+m-S-s-h-i 0 7
EnumText102
text101 0
ewall
Wall Temperature
text101 4
Energy of thermal particles
>0 : monoenergetic particles, E=ewall
=0 : Thompson distribution with EWBIN
<0 : Maxwellian with T=ewall
Float -n+m-S-s-h-i 0 11
EnumText102
text101 0
trnsprnf
Transparency Out
text101 4
Fraction of particles which penetrates
the surface from inside - in the
direction of the external normal
(TRANSP1 in Eirene, block 6B)
Float -n+m-S-s-h-i 0 8
EnumText102
text101 0
trnsprnb
Transparency In
text101 3
Fraction of particles, which penetrate
the surface from outside (TRANSP2 in
Eirene, block 6B)
Float -n+m-S-s-h-i 0 9
EnumText102
text101 0
material
Wall Material
text101 3
Chemical notation for the element of
which the surface is made.
Allowed values are: Be, C, Fe, SS, Mo, and W.
Text -n+m-S-s-h-i 0 10
EnumText102
text101 0
jlsptp
Phys. sput. model
text101 6
Physical sputtering byte of ILSPT (6B)
0: no physical sputtering
2: standard Roth-Bohdansky model
9: Beryllium re-sputtering model
(only Be will be sputtered from this surface)
Int -n+m-S-s-h-i 0 13
EnumText102
text101 0
jlcol
Plotting Colour
text101 5
ILCOL (3B) - colours for on-screen Eirene graphics:
1 black 4 green 7 cyan
2 red 5 magenta 8 black
3 blue 6 yellow and so on
Int -n+m-S-s-h-i 0 6
EnumText102
text101 0
Help
Help
text101 2
Here you specify the data related to the "additional surfaces" - in terms
of Eirene.
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 21
0
0.0
0
0
1
1
0
1
1
0
0
0
1
0
-0.1
0
0
C
2
1
Click ? for help
jedgi1
Inner edge of inner target
text101 0
0 1
VarDefs102 2
elemlist
Element number
text101 0
Elem -n-m-S-s-h-i 0 1
EnumText102
text101 0
Help
Help
text101 1
Obsolete - use "Target specification" instead.
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 2
Group100 0
Click ? for help
jedgo2
Outer edge of outer target
text101 0
0 1
VarDefs102 2
elemlist
Element number
text101 0
Elem -n-m-S-s-h-i 0 1
EnumText102
text101 0
Help
Help
text101 1
Obsolete - use "Target specification" instead
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 2
Group100 0
Click ? for help
jedgo1
Outer edge of inner target
text101 0
0 1
VarDefs102 2
elemlist
Element number
text101 0
Elem -n-m-S-s-h-i 0 1
EnumText102
text101 0
Help
Help
text101 1
Obsolete - use "Target specification" instead.
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 2
Group100 0
Click ? for help
jedgi2
Inner edge of outer target
text101 0
0 1
VarDefs102 2
elemlist
Element number
text101 0
Elem -n-m-S-s-h-i 0 1
EnumText102
text101 0
Help
Help
text101 1
Obsolete - use "Target specification" instead.
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 2
Group100 0
Click ? for help
st
Structure
text101 0
1 1
VarDefs102 4
target2
Outer Target
text101 5
Targets are needed for DG and Sonnet. Each of them must intersect
a separatrix branch, be open, and consist of minimum two elements.
In Carre mode, the targets must belong to the closed "target" pieces
of the structure.
Target2 +n-m-S-s-h-i 0 3
EnumText102
text101 0
target1
Inner Target
text101 5
Targets are needed for DG and Sonnet. Each of them must intersect
a separatrix branch, be open, and consist of minimum two elements.
In Carre mode, the targets must belong to the closed "target" pieces
of the structure.
Target1 +n-m-S-s-h-i 0 2
EnumText102
text101 0
structure
Structure
text101 18
This information is used by the grid generators.
In Carre, it limits the grid in both poloidal and radial directions.
According to Carre conventions, the structure consists of several
SEPARATE pieces. Those intersecting the actual separatrix branches
("targets") must be closed, and every separatrix branch must intersect
a target. Targets limit the grid poloidally and radially: every magnetic
surface used for the grid must either be closed (the core region) or
intersect two targets (SOL/PFR). Other parts of the structure, if present,
can be either open or closed. They limit the grid radially.
In Sonnet, the structure is only used for visualization (the outer part
of the Structure is shadowed in the PostScript output file). It must be
closed and single-connected.
Note that unmarked elements have no effect on the structure (e. g., an
unmarked element is a valid separator for the pieces of structure in the
Carre mode).
Structure +n-m-S-s-h-i 0 1
EnumText102
text101 0
Help
Help
text101 15
This layer contains variables which are only used for grid generation.
The specification of the Structure depends on the output mode (Carre
vs. Sonnet).
In the Sonnet mode, the Structure must be a singly-connected closed polygon.
In the Carre mode, the Structure must consist of several parts.
Those intersecting the separatrix branches (the target structures) must be
closed, and every one of them must intersect only one branch.
Other pieces of the Structure (limiting structures) can be either open or
closed.
Every piece of structure must be disconnected from the others.
Only the marked elements count here!
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 4
Group100 0
Group100 0
Group100 0
Click ? for help
source
Source points
text101 0
0 1
VarDefs102 2
srclabel
Source point label
text101 2
The label allows user to combine sources
into groups
Int -n-m-S+s-h-i 0 1
EnumText102
text101 0
Help
Help
text101 1
Currently not used
Float -n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 2
0
Click ? for help
rdload
Target for radiation load
text101 0
0 2
VarDefs102 2
srctarg
Source target
text101 4
Part of the surface on which the radia-
tion load is to be computed (1) and
which should be used in calculation of
shadowing (2) - the last must be closed!
StructPart -n-m-S-s-h-i 0 1
EnumText102
text101 0
Help
Help
text101 3
This is an obsolete specification for calculation of radiative wall loading.
It only works in Sonnet output mode.
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 2
Group100 0
Click ? for help
b2plot
Input for b2plot
text101 0
0 1
VarDefs102 2
vessel
Elements to be plotted
text101 2
List of elements to appear on b2plot
graphics
Elems -n-m-S-s-h-i 0 1
EnumText102
text101 0
Help
Help
text101 1
Here you specify the additional data for the b2plot postprocessor.
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 2
Group100 0
Click ? for help
wlldpart
Target for neutral load
text101 0
0 9999
VarDefs102 3
starting
Starting element
text101 4
This variable specifies the reference
point for the table of neutral wall
loading. Should be one of the edge elements
of the selected group.
Elem -n-m-S-s-h-i 0 2
EnumText102
text101 0
partlist
Element List
text101 7
This allows you to select a part of the surface for plotting the
distribution of neutral loading. The selected elements should make a
continuous chain.
Targets cannot be treated this way! If they are specified as a part of the
chain, their length counts in the reference distance but no neutral-related
data is output.
Elems -n-m-S-s-h-i 0 1
EnumText102
text101 0
Help
Help
text101 6
Here you specify the wall regions for calculation of the neutral loading in
b2plot.
At present, b2plot can only produce tables with the neutral fluxes,
power, etc. as function of a distance along the wall - one table for each
specified zone. The precedure is however not straightforward yet...
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 3
Group100 0
Group100 0
Click ? for help
skip
Elements not for Eirene
text101 0
0 1
VarDefs102 2
skipelem
Skip these elements
text101 2
Skip these elements in the data prepared
for Eirene
Elems -n-m-S-s-h-i 0 1
EnumText102
text101 0
Help
Help
text101 3
This allows you to have some elements in the DG model which are "invisible"
for Eirene - for example, the elements closing the targets in the Carre
output mode.
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 2
Group100 0
Click ? for help
plotzone
Plot Zone
text101 0
0 8
VarDefs102 4
segmlist
List of elements
text101 4
Region over which the wall loading can
be plotted in b2plot.
Parts corresponding to the targets will
be replaced with grid edges in b2plot.
Elems -n-m-S-s-h-i 0 1
EnumText102
text101 0
starting
Starting element
text101 2
This determines the direction of x-axis
for the 1-D plots.
Elem -n-m-S-s-h-i 0 2
EnumText102
text101 0
pltz_lbl
Zone label
text101 4
This is the label to mark the plot zone - 8 symbols max.
It will appear in the filenames for the plot data produced
by b2plot for this zone.
Must not contain ellipses, commas, or asterisks
Text -n-m-S-s-h+i 0 3
EnumText102
text101 0
Help
Help
text101 5
This allows you to specify the regions over which the wall loading is to be
plotted in b2plot.
At present, only CCW direction is supportet in b2plot - that is, the outer
normals should point to the right when goes along the specified zone
starting from the "Starting element".
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 4
Group100 0
Group100 0
Click ? for help
rad_srcs
Radiation Sources
text101 0
0 1
VarDefs102 2
radpower
Radiated power
text101 2
Power radiated from additional sources
(e. g., from the main plasma) (MW)
Float -n-m-S-s-h-i 0 1
EnumText102
text101 0
Help
Help
text101 5
Here you specify the total power radiated from additional sources
(typically, from the plasma core which is not covered by the B2 grid).
Do not forget to specify the source points (Sources). The power you specify
in this layer will be distributed equally among them.
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 2
0
Click ? for help
shdw_str
Shadowing Structure
text101 0
0 1
VarDefs102 2
segmlist
List of elements
text101 3
Structure used in calculation of
radiation shadowing in b2plot.
Must be continuous and closed.
Elems -n-m-S-s-h-i 0 1
EnumText102
text101 0
Help
Help
text101 1
This is needed for calculation of the radiation load in b2plot.
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 2
Group100 0
Click ? for help
linprfs
Line profiles
text101 0
0 999
VarDefs102 4
set_list
List of chords
text101 1
List of chords belonging to this set
SetOfChords -n-m-S-s-h-i 0 2
EnumText102
text101 0
n_points
Number of points
text101 1
Number of points along the chords used for the profiles
Int -n-m-S-s-h-i 0 3
EnumText102
text101 0
set_id
Set identifier
text101 7
Identifier for the set of chords along which the profiles
of various data can be plotted in b2plot.
The data for each chord will be stored as a separate file with the name
consisting of this field and a label associated with the chord:
<set_id>.<chord_label>
Text -n-m-S-s-h-i 0 1
EnumText102
text101 0
Help
Help
text101 2
Here you can specify the diagnostic chords to be used for plotting the
profile data in b2plot.
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 4
Group100 0
200
lin_prf
Click ? for help
linintg
Line integrals
text101 0
0 999
VarDefs102 4
set_id
Set Identifier
text101 6
Identifier for the set of chords along which the line integration
can be performed in b2plot
The data related to the set will be put in a file named
<set_id>.chr
Text -n-m-S-s-h-i 0 1
EnumText102
text101 0
set_list
List of chords
text101 1
These chords will be used for line integrals in b2plot
SetOfChords -n-m-S-s-h-i 0 2
EnumText102
text101 0
n_points
Number of points
text101 1
Number of points along the chords used for integration
Int -n-m-S-s-h-i 0 3
EnumText102
text101 0
Help
Help
text101 2
Here you can specify the chords for integrating diagnostics (e.g., bolometers)
in b2plot
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 4
line_integrals
Group100 0
400
Click ? for help
chrdsdat
Chords-related data
text101 0
0 99
VarDefs102 4
data_id
Dataset identifier
text101 4
The scope of the data:
lin_prf : line profiles
lin_int : line integrals
Text -n-m-S-s-h-i 0 1
EnumText102
text101 0
Help
Help
text101 2
Here you assign labels and toroidal angles to every chord
used for diagnostics
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
chr_lbl
Chord label
text101 4
Must be an integer from 0 to 999.
This label is used for the filename (line profiles) or
put into the chords file (line integrals).
Int -n-m-S-s+h-i 0 2
EnumText102
text101 0
chr_angl
Toroidal angle
text101 2
Toroidal angle of the chord end with respect to its starting
point (degrees!)
Float -n-m-S-s+h-i 0 3
EnumText102
text101 0
Vars110 4
lin_int
Click ? for help
0
0
edge_trg
Target edges
text101 0
0 4
VarDefs102 3
edge_pfr
PFR edge
text101 5
Element to be linked to the grid corner
from the PFR side of the OUTER target.
The targets are numbered in B2 notation:
clockwise starting from the lower left.
Elem -n-m-S-s-h-i 0 2
EnumText102
text101 0
edge_sol
SOL edge
text101 5
Element to be linked to the grid corner
from the SOL side of the OUTER target.
The targets are numbered in B2 notation:
clockwise starting from the lower left.
Elem -n-m-S-s-h-i 0 1
EnumText102
text101 0
Help
Help
text101 1
Obsolete - use "Target specification" instead.
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 3
Group100 0
Group100 0
Click ? for help
ex_trg
Extra targets for DN
text101 0
0 1
VarDefs102 3
target3
IU target
text101 3
Target specification for double null:
top left for DDN and CDN, or
lower right for DDN-up
Target2 +n-m-S-s-h-i 0 1
EnumText102
text101 0
target4
OU target
text101 3
Target specification for double null:
top right for DDN and CDN, or
lower left for DDN-up
Target1 +n-m-S-s-h-i 0 2
EnumText102
text101 0
Help
Help
text101 2
This is an extension of the "Structure". If you work with a double-null
configuration, you must specify the extra targets here.
Text +n-m-S-s-h-i 0 0
EnumText102
text101 0
Vars110 3
Group100 0
Group100 0
Click ? for help
trg_spcf
Target specification
text101 0
0 4
VarDefs102 21
trefcell
Reference cell
text101 4
To be used when ILREF=4
Cell index of the Eirene grid in which the reference pressure
is measured
(can only be provided once the Eirene grid is known)
Int -n-m-S-s-h-i 0 19
EnumText102
text101 0
trfpress
Reference pressure
text101 2
To be used when ILREF=4
Reference pressure (in Pa)
Float -n-m-S-s-h-i 0 20
EnumText102
text101 0
made_of
Target material
text101 2
Chemical notation for the element of
which the target surface is made.
Text -n-m-S-s-h-i 0 3
EnumText102
text101 0
tgabsrp
Absorption
text101 2
Fraction of incident particles absorbed
by the target ( = 1-RECYCT )
Float -n-m-S-s-h-i 0 4
EnumText102
text101 0
tgewall
Wall Temperature
text101 4
Energy of thermal particles
>0 : monoenergetic particles, E=ewall
=0 : Thompson distribution with EWBIN
<0 : Maxwellian with T=ewall
Float -n-m-S-s-h-i 0 5
EnumText102
text101 0
tgtrnsf
Transparency Out
text101 3
Fraction of particles which penetrates
the target from the plasma side
(TRANSP1 or TRANSP2 in Eirene, block 6B)
Float -n-m-S-s-h-i 0 6
EnumText102
text101 0
tgtrnsb
Transparency In
text101 3
Fraction of particles, which penetrate
the target surface from outside (TRANSP2 in
or TRANSP1 in Eirene, block 6B)
Float -n-m-S-s-h-i 0 7
EnumText102
text101 0
tgspcsw
Chem. sputter.
text101 4
Chemical sputtering byte of ILSPT (6B)
0: no chemical sputtering
1: standard model (constant yield)
Int -n-m-S-s-h-i 0 9
EnumText102
text101 0
tgspcff
Chem. sput. factor
text101 2
Additional, surface-related factor for
the chemical sputter yield
Float -n-m-S-s-h-i 0 11
EnumText102
text101 0
tgsppsw
Phys. sput. model
text101 6
Physical sputtering byte of ILSPT (6B)
0: no physical sputtering
2: standard Roth-Bohdansky model
9: Beryllium re-sputtering model
(only Be will be sputtered from this surface)
Int -n-m-S-s-h-i 0 12
EnumText102
text101 0