Learn R Programming

dMod (version 0.4)

symmetryDetection: Search for symmetries in the loaded model

Description

Search for symmetries in the loaded model

Usage

symmetryDetection(f, obsvect = NULL, prediction = NULL, initial = NULL,
  ansatz = "uni", pMax = 2, inputs = NULL, fixed = NULL, cores = 1,
  allTrafos = FALSE)

Arguments

f

object containing the ODE for which as.eqnvec() is defined

obsvect

vector of observation functions

prediction

vector containing prediction to be tested

initial

vector containing initial values

ansatz

type of infinitesimal ansatz used for the analysis (uni, par, multi)

pMax

maximal degree of infinitesimal ansatz

inputs

specify the input variables

fixed

variables to concider fixed

cores

maximal number of cores used for the analysis

allTrafos

do not remove transformations with a common parameter factor

Examples

Run this code
# NOT RUN {
eq <- NULL
eq <- addReaction(eq, "A", "B", "k1*A")
eq <- addReaction(eq, "B", "A", "k2*B")

observables <- eqnvec(Aobs = "alpha * A")

symmetryDetection(eq, observables)

# }

Run the code above in your browser using DataLab