Newer
Older

Olivier Sauter
committed
function [ids_from_tcv,varargout] = tcv2ids(shot,varargin);

Olivier Sauter
committed
% [ids_from_tcv,varargout] = tcv2ids(shot,varargin);
%
% Assumes you have done:
% >> addpath ~g2osaute/public/matlab9_11_2016 (on the gateway)
% >> mdsconnect('localhost:5555') % using the tunnel made in another session like: ssh -L 5555:tcvdata:8000 username@lac911.epfl.ch
% in another window do the tunnel: ssh -L 5555:tcvdata:8000 username@lac911.epfl.ch
% addpath ~g2osaute/public/matlab9_11_2016
% mdsconnect('localhost:5555')

Olivier Sauter
committed
% varargin{1}: ids to load, by default all defined so far (if empty or empty string or not given)
% {'equilibrium', 'magnetics', 'pf_active','wall'} or a subset
%
% varargout{1}: return also the ids in array of structure with the names, to allow easy use of plotallids
%
% initialize input parser
p = inputParser;
% no required inputs here so one can call with empty args and get defaults parameters
% effectively required inputs should have defaults as empty
p.addOptional('shot', [], @(x) (isnumeric(x) && isscalar(x) && (x == round(x)))); % integer

Olivier Sauter
committed
p.addOptional('ids_names', {'equilibrium', 'magnetics', 'pf_active','wall', 'tf'}, @(x) isempty(x) | (ischar(x) || iscell(x))); % char or cell array
p.parse;
defaults_tcv2ids = p.Results; % to keep track of defaults
if nargin==1
p.parse(shot);
params = p.Results;

Olivier Sauter
committed
elseif nargin>=2
p.parse(shot,varargin{:});
params = p.Results;
else
p.parse;
p.Results
return
end
% replace empty inputs with defaults
names = fieldnames(params);
mask = structfun(@isempty,params);
if any(mask),
params = rmfield(params,unique([names(mask); p.UsingDefaults.']));

Olivier Sauter
committed
if ~isfield(params, 'shot') || isnan(params.shot)
warning('No shot entered');
return
end
p.parse(params.shot,rmfield(params,'shot'));
params = p.Results;
% check ids_names
if ~isfield(params,'ids_names')
disp(['do not provide any ids_names or choose from : '])

Olivier Sauter
committed
ids_from_tcv.ids_names_available = defaults_tcv2ids.ids_names;
defaults_tcv2ids.ids_names
return
end
if ischar(params.ids_names)
params.ids_names = {params.ids_names};
end
ids_names_ok = params.ids_names;
for i=1:length(params.ids_names)
ij = strcmp(params.ids_names{i},defaults_tcv2ids.ids_names);
if ~any(ij)
disp(['ids name: ' params.ids_names{i} ' is not available yet, ask O. Sauter'])
ids_names_ok = setdiff(ids_names_ok,params.ids_names{i});
end
end
params.ids_names = ids_names_ok;
Francesco Carpanese
committed
params_tcv2ids = params;
if isempty(params_tcv2ids.ids_names)
disp('no ids names available')
return
end
for i=1:length(params_tcv2ids.ids_names)
ids_to_get = params_tcv2ids.ids_names{i};
ids_empty=ids_gen(ids_to_get);
tmp = gdat(shot,'ids','source',ids_to_get,'machine','tcv');

Olivier Sauter
committed
ids_from_tcv.(ids_to_get) = tmp.(ids_to_get);
ids_from_tcv.([ids_to_get '_description']) = tmp.([ids_to_get '_description']);
end

Olivier Sauter
committed
try
for i=1:length(params_tcv2ids.ids_names)
ids_to_get = params_tcv2ids.ids_names{i};
varargout{1}.ids{i} = ids_from_tcv.(ids_to_get);
varargout{1}.idsname{i} = ids_to_get;
varargout{1}.ids{i}.idsname = ids_to_get;
end
catch
varargout{1} = [];
disp('problems to fill in varargout')