modélisation du Temps Après la Dose (TAD)

Modélisation du Temps Après la Dose (TAD) :

Très utile lors des administrations répétées

exemple 1 (ne marche pas pour SS infusion)
$PK
IF (AMT.GT.0) THEN
TDOS=TIME
TAD=0.0
ENDIF
IF (AMT.EQ.0) TAD=TIME-TDOS

exemple 2 (ne marche pas pour les observations qui précède la première administration, eg PD)
$PK
IF (EVID.EQ.1.OR.EVID.EQ.4) THEN
TDOS=TIME
TAD=0.0
ENDIF
IF (EVID.NE.1.AND.EVID.NE.4) TAD=TIME-TDOS

exemple 3 (ne marche pas correctement si utilisation de ADDL)
Permet d’avoir TAD=0 pour tous les temps ne correspondant pas à une administration avant la première dose (intérêt en PK/PD)
$PK
IF (NEWIND.LT.2) THEN
IFL=0
TAD=0.0
ENDIF
IF (EVID.EQ.1.OR.EVID.EQ.4) THEN
TDOS=TIME
TAD=0.0
IFL=1
ENDIF
IF (IFL.EQ.1.AND.EVID.NE.1.AND.EVID.NE.4) TAD=TIME-TDOS