Skip to content

Commit

Permalink
Add manual estimate to failure rate
Browse files Browse the repository at this point in the history
  • Loading branch information
kostobog committed May 17, 2024
1 parent fecafff commit 0ade958
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ontology-generator/ontology/fta-fmea-model.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ fta-fmea:has-estimate rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fta-fmea:has-general-estimate .


### http://onto.fel.cvut.cz/ontologies/fta-fmea-application/has-manual-estimate
fta-fmea:has-manual-estimate rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf fta-fmea:has-general-estimate .


### http://onto.fel.cvut.cz/ontologies/fta-fmea-application/has-event-type
fta-fmea:has-event-type rdf:type owl:ObjectProperty ;
rdfs:domain fta-fmea:fha-fault-event ;
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/cz/cvut/kbss/analysis/model/FailureRate.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,7 @@ public class FailureRate extends AbstractEntity{
@OWLObjectProperty(iri = Vocabulary.s_p_has_prediction, cascade = CascadeType.ALL, fetch = FetchType.EAGER)
private FailureRateEstimate prediction;

@OWLObjectProperty(iri = Vocabulary.s_p_has_manual_estimate, cascade = CascadeType.ALL, fetch = FetchType.EAGER)
private FailureRateEstimate manual;

}

0 comments on commit 0ade958

Please sign in to comment.