Hello again, I made a simple check and found that neither CellVariable nor FaceVariable update., i.e. change of "t" does not trigger change of these variables, but the manual says it has to. Should it be so?
.. t = Variable() t.setValue(1) N = CellVariable(mesh=mesh, value = t) print N, t t.setValue(100) print N, t In the output N stays the same. Regards, Igor.
