The WellDataComputePaths option creates the paths for wells in an existing WellData module. The OptionValue is True or False. Use True to compute the paths. False does not compute the paths. This option is only available when a WellData module already exists.
Syntax
object.Construct(“Import”)
object.Option(“Path”, “data file name”)
object.Option(“ImportAsWells”, “True”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “WellData”)
object.Option(“WellDataComputePaths”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example sets the computational method to Tangential for the well path computation method and computes the paths.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "WellData")
CommandApi.Option ("WellDataPathMethod", "3")
CommandApi.Do()
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "WellData")
CommandApi.Option ("WellDataComputePaths", "True")
CommandApi.Do()
Used by: WellData Module
See Also