bdeCreateNewModel

Creates a new model. Option to use filename., which is a scm file.

Syntax

model = bdeCreateNewModel()

model = bdeCreateNewModel(filename, silent)

Inputs

filename
Path of the scm file to read.
Type: string

Outputs

model
Newly created model. If given scm file, model will contain the information in the scm file filename
Type: diagram

Examples

Create a new model:
newModel = bdeCreateNewModel()
	   newModel = hwscpDiagram
	  
Create new model with scm file:
file = 'test.scm';
	  model = bdeCreateNewModel(file, true)
model = hwscpDiagram