The WellDataPathMethod option determines the computational method that should be used to compute the paths for wells in an existing WellData module. The OptionValue is 0, 1, 2, or 3. Use 0 for Average Angle, 1 for Balanced Tangential, 2 for Minimum Curvature, or 3 for Tangential. 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(“WellDataPathMethod”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example sets the computational method to Tangential for the well path computation method.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "WellData")
CommandApi.Option ("WellDataPathMethod", "3")
CommandApi.Do()
Used by: WellData Module
See Also