This function contains the get_launchs_default characteristics of a LH antenna
0001 function [launchs,ids] = get_launchs_default 0002 % 0003 % This function contains the get_launchs_default characteristics of a LH antenna 0004 % 0005 type = 'LH'; 0006 % 0007 % ------- LH antenna ------- 0008 % 0009 launchs{1}.id = 'default'; 0010 launchs{1}.type = type; 0011 % 0012 launchs{1}.omega_rf = 3.7*2*pi*1e9;% wave angular frequency (rad/s) [1,1] 0013 launchs{1}.rZ0 = 0;% 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.0,-6.0];% values of N//0 the antenna ref full LHCD discharge # 013606 (Brambilla theory) 0019 launchs{1}.default.bdNpar0 = [2.0,-6.0];% standard dN//0 values, related to antenna size (Brambilla theory) 0020 launchs{1}.default.bPlhtot = 1e6*[0.7,0.3];% 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