get_launchs_HL2A

PURPOSE ^

SYNOPSIS ^

function [launchs,ids] = get_launchs_EAST

DESCRIPTION ^

 This function contains the characteristics of the LH antennas of the EAST Chinese tokamak

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [launchs,ids] = get_launchs_EAST
0002 %
0003 % This function contains the characteristics of the LH antennas of the EAST Chinese tokamak
0004 %
0005 type  = 'LH';
0006 %
0007 % ------- LH antenna #1 (3.70 GHz - PAM) -------
0008 %
0009 launchs{1}.id = 'antenna_3p70Ghz';
0010 launchs{1}.type = type;
0011 %
0012 launchs{1}.omega_rf = 3.70*2*pi*1e9;%wave angular frequency (rad/s) [1,1]
0013 launchs{1}.rZ0 = [-0.12021    -0.04207     0.04207     0.12021];%vertical launching positions (m) [1,m_pol]
0014 %
0015 launchs{1}.phi0 = 0;%toroidal angle position [1,1]
0016 launchs{1}.LFS = 1;% (-1) high field side launching, (1) low field side launching [1,1]
0017 %
0018 launchs{1}.default.bNpar0 = [-2.7500 2.7500];% values of N//0 the antenna ref full LHCD discharge # 013606 (Brambilla theory)
0019 launchs{1}.default.bdNpar0 = [0.1200 0.1200];% standard dN//0 values, related to antenna size (Brambilla theory)
0020 launchs{1}.default.bPlhtot = 1e6*[0.0122 0.0248];% maximum coupled power (3.4658 MW for 4MW at the generators), standard directivity
0021 launchs{1}.default.m0 = 0;% default initial poloidal mode number [1,1]
0022 launchs{1}.default.i_ref = -1;% Initial radial position index [1,1]
0023 launchs{1}.default.mmode = -1;% (-1) for slow wave, (1) for fast wave
0024 %
0025 % ------- ids -------
0026 %
0027 nlaunchs = length(launchs);
0028 ids = cell(1,nlaunchs);
0029 for ilaunch = 1:nlaunchs,
0030     ids{ilaunch} = launchs{ilaunch}.id;
0031 end
0032

Community support and wiki are available on Redmine. Last update: 18-Apr-2019.