Skip to content
Discussion options

You must be logged in to vote

The flag is a bit-field where each bit represents a specific state of the parameter in PK-Sim/MoBi.
If the n-th bit is set to 1: the flag is enabled, otherwise disabled.

The states (bits) are defined as following

CanBeVaried = 2,
ReadOnly = 4,
Visible = 8,
MinIsAllowed = 16,
MaxIsAllowed = 32,
CanBeVariedInPopulation = 64,
IsChangedByCreateIndividual = 128,

Example:

<Parameter id="xxx" ... >
    <Info flag="52" ... />
</Parameter>

Here: 52 = 32+16+4 meaning that the parameter is defined as:

CanBeVaried = FALSE
ReadOnly = TRUE
Visible = FALSE
MinIsAllowed = TRUE
MaxIsAllowed = TRUE
CanBeVariedInPopulation = FALSE
IsChangedByCreateIndividual = FALSE

The visible flag is used by PK-Sim onl…

Replies: 1 comment 6 replies

Comment options

You must be logged in to vote
6 replies
@Yuri05
Comment options

@moPellowe
Comment options

@msevestre
Comment options

@msevestre
Comment options

@moPellowe
Comment options

Answer selected by moPellowe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants