Skip to content
Snippets Groups Projects

Resolve "Fix routine to plot connection matrix in TCV_IMAS routines"

All threads resolved!
@@ -28,9 +28,9 @@ for kk=1:info_pf_active.ntotcircuits
addcolor = '\color{green}';
end
xlab{index} = [addcolor info_pf_active.supply{ii}.name{:} 'in'];
xlab{index} = [addcolor info_pf_active.supply{ii}.name 'in'];
index = index +1;
xlab{index} = [addcolor info_pf_active.supply{ii}.name{:} 'out'];
xlab{index} = [addcolor info_pf_active.supply{ii}.name 'out'];
end
for ii=1:info_pf_active.ntotcoils
if any(ii==info_pf_active.circuit{kk}.coils_ind_belonging_to_circuit)
@@ -51,6+51,6 @@
xlabel('Element name. (red) Elemement belonging to circuit. (green) power supplies. (black) coils');
ylabel('Node');
title(['Circuit ' num2str(kk) ': ' info_pf_active.circuit{kk}.name])
set(ax,'Xtick', xti, 'Ytick', yti, 'XTickLabel', xlab, 'YTickLabel', ylab')
end
Loading