Repository Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{Template:APIClass|Repository Class| }}  
{{Template:APIClass|Repository Class| }}  
{{Template:Repository_Class.Cmt}}
This is a class that allows you to access a Synthesis repository. The class has following sections containing methods and properties that allow you to read, create and edit various objects in the repository. See [[#Usage_Example|Example]] at the bottom of this page.
This is a class that allows you to access a Synthesis repository. The class has following sections containing methods and properties that allow you to read, create and edit various objects in the repository. See [[#Usage_Example|Example]] at the bottom of this page.


Line 26: Line 25:
*[[Repository.AddModel|AddModel( cModel )]] {{APIComment|{{Template:Repository.AddModel.Cmt}}}}
*[[Repository.AddModel|AddModel( cModel )]] {{APIComment|{{Template:Repository.AddModel.Cmt}}}}
*[[Repository.UpdateModel|UpdateModel( cModel )]] {{APIComment|{{Template:Repository.UpdateModel.Cmt}}}}
*[[Repository.UpdateModel|UpdateModel( cModel )]] {{APIComment|{{Template:Repository.UpdateModel.Cmt}}}}
*[[Repository.DeleteModel|DeleteModel(Integer)]] {{APIComment|{{Template:Repository.DeleteModel.Cmt}}}}
*[[Repository.DeleteModel|DeleteModel(Integer)]] {{APIComment|Checks if the model is not in use and deletes the model. Returns true if success, false otherwise. Throws an exception if the model is in use.}} [[Notes|*]]
*[[Repository.IsModelUsed|IsModelUsed(Integer)]] {{APIComment|{{Template:Repository.IsModelUsed.Cmt}}}}
*[[Repository.IsModelUsed|IsModelUsed(Integer)]] {{APIComment|Checks if the model is currently in use by other items.}} [[Notes|*]]
}}


''' URD '''  
''' URD '''  

Revision as of 22:43, 28 April 2015


This is a class that allows you to access a Synthesis repository. The class has following sections containing methods and properties that allow you to read, create and edit various objects in the repository. See Example at the bottom of this page.

Repository

Project

Unit

  • GetAllUnits Returns an array containing all units of measurement from the current repository.

Model

  • GetAllModelsInfo Returns an array containing all model names and their IDs from the current project.
  • GetModel( Integer ) Returns the model from the current project with the specified ID. Returns nothing if the model does not exist or is not in the current project. *
  • GetAllModels Returns an array containing all models from the current project.
  • AddModel( cModel ) Saves a new model in the repository.
  • UpdateModel( cModel ) Updates the model in the repository.
  • DeleteModel(Integer) Checks if the model is not in use and deletes the model. Returns true if success, false otherwise. Throws an exception if the model is in use. *
  • IsModelUsed(Integer) Checks if the model is currently in use by other items. *

}}

URD

  • GetAllURDs Returns an array containing all URDs from the current project.
  • GetURD (cURD) Version 10 Only- Returns URD(s) with the provided ID. Returns nothing if the URD(s) does/do not exist.
  • AddURD( cURD ) Saves a new URD in the repository.
  • UpdateURD( cURD ) Updates the URD in the repository.

Variable

Task

Crew

  • GetAllCrews Returns an array containing all crews from the current project.
  • AddCrew(cCrew) Saves the crew in the repository.
  • UpdateCrew( cCrew ) Updates the crew in the repository.
  • GetCrew(cCrew) Version 10 Only - Returns crew with the provided ID. Returns nothing if the crew doesn't exist.

Pool

  • GetAllPools Returns an array containing all spare parts pools from the current project.
  • AddPool(cPool) Saves the spare parts pool in the repository.
  • UpdatePool(cPool) Updates the spare parts pool in the repository.
  • GetPool (cPool) Version 10 Only - Returns pool with the provided ID. Returns nothing if the pool doesn't exist.

Action

BlockSim

DataWarehouse

XFRACAS

Xfmea

Usage Example

In this usage example, the API is used to connect to a repository, retrieve one of the models in it and then calculate the reliability at a specified time, based on that model.

 'Declare a new repository connection object. 
 Dim MyRepository As New Repository
 
 'Connect to a Synthesis repository. 
 Dim Success As Boolean = False
 Success = MyRepository.ConnectToRepository("C:\Users\Name\Documents\ReliaSoft\Files\repository.rsr10")
 
 'Get a list of the names/IDs of projects in the connected repository. 
 Dim ListOfProjects() As NameIdPair
 ListOfProjects = MyRepository.Project.GetAllProjects()
 
 'Open the first project in the list. 
 MyRepository.Project.SetCurrentProject(ListOfProjects(0).ID)
 
 'Get a list of the names/IDs of models in the current project. 
 Dim ListOfModels() As NameIdPair
 ListOfModels = MyRepository.Model.GetAllModelsInfo()
 
 'Retrieve the first model in the list. 
 Dim AModel As cModel
 AModel = MyRepository.Model.GetModel(ListOfModels(0).ID)
 
 'Calculate the reliability at time = 50 and save the result. See Reliability. 
 Dim Rel As Double
 Rel = AModel.Reliability(50)
 
 'Disconnect from the repository. 
 MyRepository.DisconnectFromRepository()

Notes