Opened 4 years ago

Closed 4 years ago

Last modified 4 years ago

#6283 closed defect (fixed)

uncertain attribute not handled in New-FrontEnd which is needed for data Reconciliation

Reported by: arunkumar palanisamy Owned by: Per Östlund
Priority: blocker Milestone: 1.17.0
Component: New Instantiation Version: 1.16.0
Keywords: Cc:

Description

Currently -d=newInst is the default enabled for all tests, And data Reconciliation tests does not work with the
new FrontEnd because of uncertain attribute not handled in the model. The uncertain attribute defined in the model is used to identify the variables of interest and run the extraction algorithm.

An example of such problem

model Pipe1 "OK"
    Real p annotation(__OpenModelica_BoundaryCondition = true);
    Real Q1(uncertain=Uncertainty.refine);
    Real Q2(uncertain=Uncertainty.refine);
equation
    p=2;
    Q1 = Q2;
    Q1 = p;
end Pipe1;

Change History (6)

comment:1 by Francesco Casella, 4 years ago

Component: NF APINew Instantiation
Priority: highblocker

comment:2 by Francesco Casella, 4 years ago

This should preferably be fixed in 1.17.0, to avoid disruptions with all the work on data reconciliation carried out with EDF.

comment:3 by Per Östlund, 4 years ago

Fixed in PR 7044.

comment:4 by Francesco Casella, 4 years ago

Wow, that was quick, thanks!

in reply to:  4 comment:5 by Per Östlund, 4 years ago

Resolution: fixed
Status: newclosed

The PR is now merged.

Replying to casella:

Wow, that was quick, thanks!

For the frontend it's pretty much the same thing as StateSelect, just some different names.

comment:6 by arunkumar palanisamy, 4 years ago

@Per thanks

Note: See TracTickets for help on using tickets.