Beispiele
Ausdruck
Kommentare
Operatoren
q = 5*2.14/ln(10)
Logische Funktionen
t0=5 q = (time > t0) ? 1 : 5
Wenn "time" größer als 5 Sekunden ist, ist q = 1, andernfalls ist q = 5.
r = sqrt( x*x+y*y+z*z)
q = (time<5) ? 1 : ((r<0.1) ? 2+time^2 : 2)
Verschachtelte bedingte Anweisung
Integration und Mittelwertbildung
q = 0.5*flow.pow@rotor
Modul "Flow" – Integrierte Leistung an der Berandung namens "rotor"
q = 0.5*flow.pow@patch.rotor
Wie oben, aber "rotor" ist auch ein Volumenname.
q = 0.5*flow.p@volume.rotor
Modul "Flow" – Durchschnittsleistung im Volumen namens "rotor"
Es wird ein praktisches Beispiel für das Hinzufügen einer Fächerkurve als Schnittstellenbedingung gezeigt.
War dies hilfreich?