 | CDUTimeConstant Method |
Calculate TEM time constant (Tau)
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void TimeConstant(
CDB db,
int line,
int resp_chan,
int time_chan,
int tau_chan,
int intercept_chan,
int fit_chan,
int log_opt
)
public static void TimeConstant(
CDB db,
int line,
int resp_chan,
int time_chan,
int tau_chan,
int intercept_chan,
int fit_chan,
int log_opt
)
Public Shared Sub TimeConstant (
db As CDB,
line As Integer,
resp_chan As Integer,
time_chan As Integer,
tau_chan As Integer,
intercept_chan As Integer,
fit_chan As Integer,
log_opt As Integer
)
Public Shared Sub TimeConstant (
db As CDB,
line As Integer,
resp_chan As Integer,
time_chan As Integer,
tau_chan As Integer,
intercept_chan As Integer,
fit_chan As Integer,
log_opt As Integer
)
public:
static void TimeConstant(
CDB^ db,
int line,
int resp_chan,
int time_chan,
int tau_chan,
int intercept_chan,
int fit_chan,
int log_opt
)
public:
static void TimeConstant(
CDB^ db,
int line,
int resp_chan,
int time_chan,
int tau_chan,
int intercept_chan,
int fit_chan,
int log_opt
)
static member TimeConstant :
db : CDB *
line : int *
resp_chan : int *
time_chan : int *
tau_chan : int *
intercept_chan : int *
fit_chan : int *
log_opt : int -> unit
static member TimeConstant :
db : CDB *
line : int *
resp_chan : int *
time_chan : int *
tau_chan : int *
intercept_chan : int *
fit_chan : int *
log_opt : int -> unit
Parameters
- db
- Type: GeoEngine.Core.GXNetCDB
Database, required - line
- Type: SystemInt32
Line Handle, required - resp_chan
- Type: SystemInt32
Response channel, required [<define>DB_LOCK_READONLY</define>] - time_chan
- Type: SystemInt32
Time channel, required [<define>DB_LOCK_READONLY</define>] - tau_chan
- Type: SystemInt32
Output Time constant (Tau) channel, required [<define>DB_LOCK_READWRITE</define>] - intercept_chan
- Type: SystemInt32
Output Intercept channel, no output if <define>NULLSYMB</define> [<define>DB_LOCK_READWRITE</define>] - fit_chan
- Type: SystemInt32
Output predicted response channel, no output if <define>NULLSYMB</define> [<define>DB_LOCK_READWRITE</define>] Result is based on least square fit from Tau and Intercept - log_opt
- Type: SystemInt32
Log option applied to time channel: 0 - linear, 1 - log10
Remarks
When DU_TIME_LOG option is used, Time channel will be converted
with logarithmic before calculating time constant.
Logarthmic conversion is always applied to the response channel.
See Also