contents.gifprev1.gifnext1.gif

LHRS() - Labor hours learning rate

Calculates labor hours using learning rates.

Returns

Double value if successful. If an error occurs, this function returns a zero.

Arguments

Type
Field
Description
double
dU1Hrs
Time to produce first unit
double
dUnit
Number of the unit
double
dLearn
Learning rate percentage
16 bit DLL declarations

PowerBuilder Function declaration

function double LHRS(double dU1Hrs, double dUnit, double dLearn) library "IFL16.DLL"

Visual Basic Function declaration

Declare Function LHRS lib "IFL16" (ByVal dU1Hrs As Double, ByVal dUnit As Double, ByVal dLearn As Double) As Double

C/C++ Synopsis

#include "function.h"

double LHRS(double dU1Hrs, double dUnit, double dLearn)

32 bit DLL declarations

PowerBuilder Function declaration

function double LHRS(double dU1Hrs, double dUnit, double dLearn) library "IFL32.DLL"

Visual Basic Function declaration

Declare Function LHRS lib "IFL32" (ByVal dU1Hrs As Double, ByVal dUnit As Double, ByVal dLearn As Double) As Double

C/C++ Synopsis

#include "function.h"

double LHRS(double dU1Hrs, double dUnit, double dLearn)

Example:

dU1Hrs
=
70

dUnit
=
20

dLearn
=
0.8
(80%)
Result: 26.68 (hours)