1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
myFunc= (FieldFunction :
[x]->[sin(x)])o(FieldFunction :
[x]->[cos(x)])
myFunc input description= [x]
myFunc output description= [y0]
myFunc input dimension= 1
myFunc output dimension= 1
field= [ t t ]
0 : [ 0 0 ]
1 : [ 0.1 0.2 ]
2 : [ 0.2 0.4 ]
3 : [ 0.3 0.6 ]
4 : [ 0.4 0.8 ]
5 : [ 0.5 1 ]
6 : [ 0.6 1.2 ]
7 : [ 0.7 1.4 ]
8 : [ 0.8 1.6 ]
9 : [ 0.9 1.8 ]
10 : [ 1 2 ]
myFunc(field)= [ y0 ]
0 : [ 0.841471 ]
1 : [ 0.830534 ]
2 : [ 0.796244 ]
3 : [ 0.734775 ]
4 : [ 0.641695 ]
5 : [ 0.514395 ]
6 : [ 0.35448 ]
7 : [ 0.16915 ]
8 : [ -0.0291954 ]
9 : [ -0.225252 ]
10 : [ -0.404239 ]
called 1 times
myFunc= (FieldToPointFunction :
class=KarhunenLoeveProjection name=Unnamed input description=[v0] output description=[xi0,xi1,xi2,xi3,xi4,xi5,xi6,xi7,xi8,xi9] number of calls=0)o(PointToFieldFunction :
class=KarhunenLoeveLifting name=Unnamed input description=[xi0,xi1,xi2,xi3,xi4,xi5,xi6,xi7,xi8,xi9] output description=[v0] number of calls=0)
myFunc input description= [v0]
myFunc output description= [v0]
myFunc input dimension= 1
myFunc output dimension= 1
field= 0 : [ -1 1.19752 ]
1 : [ -0.777778 -0.115609 ]
2 : [ -0.555556 0.0950639 ]
3 : [ -0.333333 0.0128352 ]
4 : [ -0.111111 0.0605245 ]
5 : [ 0.111111 0.00265967 ]
6 : [ 0.333333 0.0563444 ]
7 : [ 0.555556 -0.0116735 ]
8 : [ 0.777778 0.0548699 ]
9 : [ 1 -0.0247796 ]
myFunc(field)= 0 : [ 1.19752 ]
1 : [ -0.115609 ]
2 : [ 0.0950639 ]
3 : [ 0.0128352 ]
4 : [ 0.0605245 ]
5 : [ 0.00265967 ]
6 : [ 0.0563444 ]
7 : [ -0.0116735 ]
8 : [ 0.0548699 ]
9 : [ -0.0247796 ]
called 1 times
|