2023-12-18 00:52:11 +01:00
|
|
|
'''
|
|
|
|
ITER startup scenario at B=5.3T;
|
|
|
|
analytical profiles;
|
|
|
|
upper steering mirror (USM), virtual beam, 0D beam parameters;
|
|
|
|
circular beam, X1 mode/mixed polarisation;
|
|
|
|
reflection before entering plasma
|
|
|
|
'''
|
|
|
|
|
|
|
|
from .. import TestCase, GrayTest, get_basedir
|
|
|
|
|
|
|
|
|
|
|
|
class X_Mode(GrayTest, TestCase):
|
|
|
|
'''
|
|
|
|
X mode at 1st pass, absorption after the reflection
|
|
|
|
'''
|
|
|
|
reference = get_basedir(__name__) / 'outputs' / 'x-mode'
|
|
|
|
|
|
|
|
|
|
|
|
class Mixed(GrayTest, TestCase):
|
|
|
|
'''
|
|
|
|
Horizontal polarisation at launch (both X, O mode)
|
|
|
|
'''
|
|
|
|
reference = get_basedir(__name__) / 'outputs' / 'mixed'
|
2024-01-29 01:08:28 +01:00
|
|
|
gray_params = {"raytracing.ipol": True}
|