Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gdat
Manage
Activity
Members
Labels
Plan
Issues
36
Issue boards
Milestones
Wiki
Code
Merge requests
13
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SPC
gdat
Merge requests
!40
Ids tweaks
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Ids tweaks
ids_tweaks
into
master
Overview
0
Commits
6
Pipelines
1
Changes
7
Merged
Antoine Merle
requested to merge
ids_tweaks
into
master
5 years ago
Overview
0
Commits
6
Pipelines
1
Changes
7
Expand
Fix some bugs introduced by
!39 (merged)
Improved labels when plotting connection matrix
Fix incomplete substructure in core_profiles/ion/element
Add constraints for equilibrium from LIUQE
Read bpol_probe areas from MDS instead of hard-coded values.
👍
0
👎
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
4dffbd0f
6 commits,
5 years ago
7 files
+
163
−
69
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
matlab/TCV_IMAS/plot_connection_matrices.m
+
3
−
1
Options
@@ -44,6 +44,8 @@ for kk=1:info_pf_active.ntotcircuits
xlab
{
index
}
=
[
addcolor
info_pf_active
.
coil
{
ii
}
.
name
'out'
];
end
xlab
=
strrep
(
xlab
,
'_'
,
'\_'
);
% since we need the tex interpreter for colors
shg
axis
ij
ax
=
gca
;
@@ -51,6 +53,6 @@ for kk=1:info_pf_active.ntotcircuits
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
'
)
set
(
ax
,
'Xtick'
,
xti
,
'Ytick'
,
yti
,
'XTickLabel'
,
xlab
,
'YTickLabel'
,
ylab
'
, '
XTickLabelRotation
'
,
90
)
end
Loading