get_launchs_EAST

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 (2.45 GHz - FAM) -------
0008 %
0009 launchs{1}.id = 'antenna_2p45Ghz';
0010 launchs{1}.type = type;
0011 %
0012 launchs{1}.omega_rf = 2.45*2*pi*1e9;%wave angular frequency (rad/s) [1,1]
0013 launchs{1}.rZ0 = [-0.2920,-0.1460,0,0.1460,0.2920];%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 = [-7.2000,-6.3000,2.1000,2.5000,3.1000];% values of N//0 the antenna ref full LHCD discharge # 013606 (Brambilla theory)
0019 launchs{1}.default.bdNpar0 = [0.2200,0.2100,0.2300,0.1400,0.2100];% standard dN//0 values, related to antenna size (Brambilla theory)
0020 launchs{1}.default.bPlhtot = 0.8665*1e6*[0.3900,0.2124,2.8344,0.1130,0.4500];% 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 % ------- LH antenna #2 (4.60 GHz - FAM) -------
0026 %
0027 launchs{2}.id = 'antenna_4p60Ghz';
0028 launchs{2}.type = type;
0029 %
0030 launchs{2}.omega_rf = 4.60*2*pi*1e9;%wave angular frequency (rad/s) [1,1]
0031 launchs{2}.rZ0 = [-0.2910,-0.0970,0.291,0.0970];%vertical launching positions (m) [1,m_pol]
0032 %
0033 launchs{2}.phi0 = 0;%toroidal angle position [1,1]
0034 launchs{2}.LFS = 1;% (-1) high field side launching, (1) low field side launching [1,1]
0035 %
0036 launchs{2}.default.bNpar0 = [-7.2000,-6.3000,2.1000,2.5000,3.1000];% values of N//0 the antenna ref full LHCD discharge # 013606 (Brambilla theory)
0037 launchs{2}.default.bdNpar0 = [0.2200,0.2100,0.2300,0.1400,0.2100];% standard dN//0 values, related to antenna size (Brambilla theory)
0038 launchs{2}.default.bPlhtot = 0.8667*1e6*[0.5862,0.3185,4.2508,0.1708,0.6738];% maximum coupled power (5.2003 MW for 6MW at the generators), standard directivity
0039 launchs{2}.default.m0 = 0;% default initial poloidal mode number [1,1]
0040 launchs{2}.default.i_ref = -1;% Initial radial position index [1,1]
0041 launchs{2}.default.mmode = -1;% (-1) for slow wave, (1) for fast wave
0042 %
0043 % ------- ids -------
0044 %
0045 nlaunchs = length(launchs);
0046 ids = cell(1,nlaunchs);
0047 for ilaunch = 1:nlaunchs,
0048     ids{ilaunch} = launchs{ilaunch}.id;
0049 end
0050 
0051

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