Skip to content
Snippets Groups Projects
Commit aefd5ff9 authored by Olivier Sauter's avatar Olivier Sauter
Browse files

Merge branch 'bugfix/empty_aos_in_equilibrium' into 'master'

Reset size of all unfilled arrays of structures.

See merge request spc/tcv/tbx/gdat!3
parents edda7980 53c40912
No related branches found
No related tags found
1 merge request!3Reset size of all unfilled arrays of structures.
......@@ -7,6 +7,11 @@ git-hosted version currently under development for automated tests etc.
## Policy for contributing
* `master` branch is protected, changes can only be made via merge requests.
* To propose changes:
* Open an issue to discuss the matter
* Then open a branch to work on the issue
* When done, submit a merge request to the master branch.
* Open an issue to discuss the matter (in gitlab project page -> issues)
* Then open a branch to work on the issue. There are several ways to do this:
* Click on 'create branch' on the issue page on gitlab (then `git fetch` and `git checkout <branchname>`)
* In your local space, do `git checkout -b <branchname>` to create a new branch from your current `HEAD`.
* When done, `git push` the branch and submit a merge request.
* The link to open the merge request is shown following the commit.
* Assign someone (other than yourself) to review the merge request.
* Follow up on any questions/comments and optionally amend your branch (and re-push) to fix any new issues that arise.
\ No newline at end of file
......@@ -357,4 +357,18 @@ end
ids_equilibrium.grids_ggd = {};
for it=1:numel(ids_equilibrium.time_slice)
ids_equilibrium.time_slice{it}.ggd = {};
ids_equilibrium.time_slice{it}.boundary.strike_point = {};
ids_equilibrium.time_slice{it}.boundary_separatrix.x_point = {};
ids_equilibrium.time_slice{it}.boundary_separatrix.strike_point = {};
ids_equilibrium.time_slice{it}.constraints.bpol_probe = {};
ids_equilibrium.time_slice{it}.constraints.faraday_angle = {};
ids_equilibrium.time_slice{it}.constraints.mse_polarisation_angle = {};
ids_equilibrium.time_slice{it}.constraints.flux_loop = {};
ids_equilibrium.time_slice{it}.constraints.iron_core_segment = {};
ids_equilibrium.time_slice{it}.constraints.n_e = {};
ids_equilibrium.time_slice{it}.constraints.n_e_line = {};
ids_equilibrium.time_slice{it}.constraints.pf_current = {};
ids_equilibrium.time_slice{it}.constraints.pressure = {};
ids_equilibrium.time_slice{it}.constraints.q = {};
ids_equilibrium.time_slice{it}.constraints.x_point = {};
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment