Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor edits in intro and add UDA URL in overview #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions introduction_presentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ defaultTemplate: "[[tpl-ukaea-slide]]"
## Motivation

- This workshop is aiming to give you an insight into what UDA is, how it works and how it can be used in IMAS to map experimental data
- Experimental data in IMAS format is needed to validate ITER software and can help creating multimachine databases for AI/ML
- There will be hands-on session to cover how to set up a UDA server, develop JSON mappings and create a mapping plugin for your device
- At the end of this workshop you should have the knowledge of the basic building blocks needed to develop mappings for any machine
- Future training and documentation can build on this knowledge for machine specific cases
Expand Down Expand Up @@ -57,7 +58,7 @@ defaultTemplate: "[[tpl-ukaea-slide]]"
| -----|-------| ------------|
| UDA Overview | Presentation | Detailing how UDA works to provide context for it's use in IMAS |
| UDA Installation | Hands-On | Covering installing and configuring a UDA server, plugin installation, and basic UDA usage |
| IMAS UDA | Presentation | Detailing how UDA is used in IMAS remote data access and experimental data mapping |
| IMAS UDA | Presentation | Detailing how UDA is used in IMAS remote data access and experimental data mapping |
| IMAS UDA | Hands-On | Using IMAS to get data using UDA from IMAS data files and mapped data |


Expand All @@ -76,6 +77,7 @@ defaultTemplate: "[[tpl-ukaea-slide]]"

What we assume from attendees:<!-- element style="text-align: left; width: 90%" -->

- Basic knowledge on IMAS and particularly its data model
- Interest in using UDA to map experimental data into IMAS
- Some basic C/C++ & Python knowledge
- Familiarity with Linux systems and command line usage
Expand All @@ -92,7 +94,8 @@ What we assume from attendees:<!-- element style="text-align: left; width: 90%"
---
## Logistics & Administration

«TODO»

- Details of workshop dinner, timings, buses, site tour, etc.
- Any health & safety info.
- WiFi -> choose "Guest wireless" and then "Login with your ITER account"
- How-to connect to SDCC: https://confluence.iter.org/display/IMP/ITER+Computing+Cluster
- Regular ITER bus lines to Aix (A,B,C) are departing at 17:45 from the parking lot in entrance C
- Work site visit Tuesday afternoon at 15:45
- Workshop dinner at the restaurant L'Orangerie in Hotel Aquabella (Aix-en-Provence) at 19:30
3 changes: 2 additions & 1 deletion overview_presentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ defaultTemplate: "[[tpl-ukaea-slide]]"
- Client-Server architecture to separate users from location and format of data files
- Developed a plugin architecture on the server to allow more formats to be added without having to update the server
- Coupling of network data transport with extensible server plugins makes it useful for interfacing with IMAS for remote data access
- UDA is open source (Apache 2.0) and available at https://github.com/ukaea/UDA

---
## UDA — Design
Expand Down Expand Up @@ -364,4 +365,4 @@ data_block->data_n = static_cast<int>(buffer.size);
data_block->data = buffer.data;
data_block->dims = nullptr;
data_block->data_type = UDA_TYPE_CAPNP;
```
```