33
EPICS Collaboration meeting Fall 2012, SDD status and plans Page 1 Self-Described Data - SDD status and plans Lana Abadie, ITER CODAC

Self-Described Data - SDD status and plans

  • Upload
    crevan

  • View
    29

  • Download
    4

Embed Size (px)

DESCRIPTION

Self-Described Data - SDD status and plans. Lana Abadie, ITER CODAC. Context. Need to be configured. Big fusion device : 1 million EPICS PV, Several thousands of EPICS IOC Many services (BEAST, BEAUTY, etc ) International collaboration Pieces of the tokamak built by different entities - PowerPoint PPT Presentation

Citation preview

Page 1: Self-Described Data - SDD status and plans

EPICS Collaboration meeting Fall 2012, SDD status and plans Page 1

Self-Described Data - SDD status and plans

Lana Abadie, ITER CODAC

Page 2: Self-Described Data - SDD status and plans

Page 2

EPICS Collaboration meeting Fall 2012, SDD status and plans

Context- Big fusion device :

- 1 million EPICS PV, - Several thousands of EPICS IOC- Many services (BEAST, BEAUTY, etc )

- International collaboration- Pieces of the tokamak built by different entities- Interfaces with CODAC- Standard and guidelines via PCDH

- CODAC core software- Push the I&C designer/developer to follow our standards- Ease the integration of all these pieces- One key aspect is configuration management (via SDD toolkit)

Note : PCDH – Plant Control Design Handbook

Need to be configured

Promote CODAC standards

Page 3: Self-Described Data - SDD status and plans

Page 3

EPICS Collaboration meeting Fall 2012, SDD status and plans

Static data• Describe the configuration of plant system I&Cs (~

subsystem)– Components and signals– EPICS PVs (state, config and commands)– Alarm tree and archived PVs, etc…

• Data is changed during maintenance phase not between pulses

• Dynamic information is not stored in SDD– Initial values– Inclusion/exclusion of plant system I&Cs– Pulse definition

• Objective 1 : allow I&C designer to design its CODAC interface in term of EPICS PVs interfaces

• Objective 2: Generate as much as possible configuration files

Configuration management : SDD toolkit

Page 4: Self-Described Data - SDD status and plans

Page 4

EPICS Collaboration meeting Fall 2012, SDD status and plans

Challenges• 3 EPICS PVs:• SAMPLE:PLC-AI: ->read

from a PLC (DTYP + INP fields, offset computation)

• SAMPLE:CALC -> keep track that this PV requires SAMPLE:PLC-AI

• SAMPLE:FC-DO -> write to a NI PXI 6259 board (DTYP and OUT fields)DOL field linked to SAMPLE:CALC

SDD model

aiSAMPLE:PLC-AI

DTYP = “S7PLC”INP = “@PLC10/0 T=WORD”SCAN = “I/O Intr”

calcSAMPLE:CALC

INPA = “SAMPLE:PLC-AI”CALC= “A>10?1:0”SCAN=Passive

boSAMPLE:FC-DO

DTYP= “ni6259”OUT=“#C2S5”DOL=“SAMPLE:CALC”SCAN=Passive

Page 5: Self-Described Data - SDD status and plans

Page 5

EPICS Collaboration meeting Fall 2012, SDD status and plans

I&C PROJECT

SDD offers different views of the plant system I&C

Physical info:- List of components

with its signals- List of controllers with

I/O modules + location in cubicles/chassis

Functional info:- Control breakdown to

define I&C functions- EPICS PVs associated

with I&C functions

Control info:- Combine functional and

functional views- Define deployment of PVs

at IOC level (which controller)

- Supported I/O modules are in PCDH

Introduction

In v4, we will add the location view, i.e. order by cubcile, chassis,etc

Page 6: Self-Described Data - SDD status and plans

Page 6

EPICS Collaboration meeting Fall 2012, SDD status and plans

SDD minimizes development and ensures consistency

I&C Project SDD Translator

HMI screens (BOY)

Archive server

(BEAUTY) config files

Alarm server

(BEAST) config files

EPICS files (database, autosave,

IOC startup)

PLC Datablocks

(S7)

Color code:SDD Toolkit

CODAC services

Controllers

Validation:- Consistency- Completeness- Naming convention

Introduction

All the generated files follows a standard I&C project structure

Page 7: Self-Described Data - SDD status and plans

Page 7

EPICS Collaboration meeting Fall 2012, SDD status and plans

Configuration files (plans for v4 and v5)

• Generate breakpoint tables (v4)• Generate SNL codes for COS support (v4) • Generate files for fast control – SDN (v5)• Generate files for fast experimental archiving - DAN(v5)• Improve BOY HMI templates (v4)• Improve validations (v4, v5)• Improve support for new EPICS device support

declaration (v4)

SDD model

Page 8: Self-Described Data - SDD status and plans

Page 8

EPICS Collaboration meeting Fall 2012, SDD status and plans

Validation

• 3 levels of validation : objective minimize errors– Level 1 : basic checks to make sure that your data is

consistent: e.g. we don’t allow saving a variable if name already exists. Warnings are raised when there are invalid PVs links

– Level 2: checks to ensure that we can generate configuration files: e.g. if a variable has no record type, we complain

– Level 3: checks that you are complete and compliant with ITER rules : e.g. naming convention

Page 9: Self-Described Data - SDD status and plans

Page 9

EPICS Collaboration meeting Fall 2012, SDD status and plans

SDD implementation : DATABASE CENTRIC

- Data is stored in a relational DB (PostgreSQL)- SDD model lib to interact with SDD DB (Hibernate and

Spring)- SDD Editor and SDD web app to enter config data- SDD translator to generate config files - SDD parser to retrofit data- SDD sync to export/import I&C project into XML and

synchronize with PS Profile- Excel import/export for mass data

Page 10: Self-Described Data - SDD status and plans

Page 10

EPICS Collaboration meeting Fall 2012, SDD status and plans

Workflow

Page 11: Self-Described Data - SDD status and plans

Page 11

EPICS Collaboration meeting Fall 2012, SDD status and plans

SDD editorSDD implementation

Page 12: Self-Described Data - SDD status and plans

Page 12

EPICS Collaboration meeting Fall 2012, SDD status and plans

Page 13: Self-Described Data - SDD status and plans

Page 13

EPICS Collaboration meeting Fall 2012, SDD status and plans

SDD web appSDD implementation

Page 14: Self-Described Data - SDD status and plans

Page 14

EPICS Collaboration meeting Fall 2012, SDD status and plans

Some statistics

Page 15: Self-Described Data - SDD status and plans

Page 15

EPICS Collaboration meeting Fall 2012, SDD status and plans

Export/Import your I&C projectExport1. Click on the I&C project name,

version2. Click on Export to XML/Send to

Central (you need an IDM account)3. Click on Download and specify where

to save the fileImport1. Click on the config list2. Click on XML Import/Import (for

central database)3. Upload your XML file 4. Click on the small arrow to start the

loading

Create I&C Project

Page 16: Self-Described Data - SDD status and plans

Page 16

EPICS Collaboration meeting Fall 2012, SDD status and plans

Better support for card configurationClick on of the I/O module to get help for board config such as asyn reasons

Page 17: Self-Described Data - SDD status and plans

Page 17

EPICS Collaboration meeting Fall 2012, SDD status and plans

Get the list of asyn reasons supported by an I/O module

Page 18: Self-Described Data - SDD status and plans

EPICS Collaboration meeting Fall 2012, SDD status and plans Page 18

Functional variable’s neighborhoodClick on one of the node to navigate

Get neighborhood view of one PV, hide/unhide link types

Page 19: Self-Described Data - SDD status and plans

Page 19

EPICS Collaboration meeting Fall 2012, SDD status and plans

Adding/removing links

Add or remove link

Page 20: Self-Described Data - SDD status and plans

Page 20

EPICS Collaboration meeting Fall 2012, SDD status and plans

Debugging view

Get values of PVs while IOC running

Page 21: Self-Described Data - SDD status and plans

Page 21

EPICS Collaboration meeting Fall 2012, SDD status and plans

Search variablesYou can add or update epics attributes by filtering your PVs : e.g.

Page 22: Self-Described Data - SDD status and plans

Page 22

EPICS Collaboration meeting Fall 2012, SDD status and plans

List of template instances per template

Page 23: Self-Described Data - SDD status and plans

Page 23

EPICS Collaboration meeting Fall 2012, SDD status and plans

template support

Page 24: Self-Described Data - SDD status and plans

Page 24

EPICS Collaboration meeting Fall 2012, SDD status and plans

SDD Translator generates all configuration files

Alarm Configuration

Archive Configuration

Generated HMI

EPICS records

EPICS IOC files

STEP-7 files

Generate config files

Page 25: Self-Described Data - SDD status and plans

Page 25

EPICS Collaboration meeting Fall 2012, SDD status and plans

• CSS EPICS SNL (State Notation Language) editor is used to develop SNL code

• Apache Maven (software project management) to build I&C project, to start, stop, run and package EPICS application and ioc-screen to access IOCs console

• Step 7 platform is used to develop PLC applications• Labview FPGA is used to program and generate FPGA

codes• SDD parser (based on ANTLR) reads back the I&C

project and parses only information which go to SDD DB (e.g. no parsing of FPGA code or S7 PLC application)

Development platform

Page 26: Self-Described Data - SDD status and plans

Page 26

EPICS Collaboration meeting Fall 2012, SDD status and plans

Development platform

Page 27: Self-Described Data - SDD status and plans

Page 27

EPICS Collaboration meeting Fall 2012, SDD status and plans

• Plans for v4 : a new editor– We will add a new perspective (ECLIPSE RCP based) which

is maven editor– Will be integrated with sdd-editor– Main objective to develop code in the I&C project and import

configuration files directly to BEAST/BEAUTY– Way of people keen on GUIs to avoid using CLIs– Will allow to execute mvn clean, compile, run, access an IOC

console and execute db commands– Next step (>4.0) is to allow remote run of IOCs (mainly for fast

controller as they have I/O modules)

Development platform

Page 28: Self-Described Data - SDD status and plans

Page 28

EPICS Collaboration meeting Fall 2012, SDD status and plans

SDD DB migrationThe SDD DB schema changes from time to time at the development stage. We provide a migration applicationto migrate existing data to the new schema.

SDD DB and SVNA I&C project consists of both configuration data stored in the database and code (e.g. SNL, FPGA code) stored in SVN. Tools based on Maven are provided to synchronize the data between SDD DB and SVN on a project level.These tools follow SVN concepts like import, check-out, update.

Maintenance

Page 29: Self-Described Data - SDD status and plans

Page 29

EPICS Collaboration meeting Fall 2012, SDD status and plans

• Good progress• SDD Toolkit is being used by external users.• SDD Design to be completed

– Support SDN and DAN (later for 5.0)– Improve validation

• Some improvements to be done on tools level– More features– Ensure scalability and modularity– Provide utilities for integration (merging several I&C projects)

Conclusion

Page 30: Self-Described Data - SDD status and plans

Page 30

EPICS Collaboration meeting Fall 2012, SDD status and plans

BACKUP SLIDES

Page 31: Self-Described Data - SDD status and plans

Page 31

EPICS Collaboration meeting Fall 2012, SDD status and plans

Page 32: Self-Described Data - SDD status and plans

Page 32

EPICS Collaboration meeting Fall 2012, SDD status and plans

Specification of NI PXI-6259

AI Channels Channel : 32 Single-Ended Channels /16 Differential Channels Sample rate : 1.25Ms/s single channels 1Ms/s multi channels (all) AO Channels Channel : 4 Update rate : 1.25Ms/s per each channel

Digital I/OBidirectional Channel : 48

Page 33: Self-Described Data - SDD status and plans

Page 33

EPICS Collaboration meeting Fall 2012, SDD status and plans

Example of EPICS Template