For a given triangulated surface where a serie is defined at the triangles and localy, allows to interpolation
this serie at nodes (or not) and globaly (or not).
The local coordinate system is the one defoned in Arch (see Arch documentation), i.e., the Okada local
coordinate system.
// Given a serie defined in local coordinate system // and at triangles... // constsolution = newarch.Solution(model) constburgers = solution.burgers(true, true)
// ...get a new serie defined at nodes and globally // consti = newInterpolateSerieOnSurface(positions, indices) constnewSerie = i.interpolate({ serie :burgers, atTriangles:false, localCsys :false })
For a given triangulated surface where a serie is defined at the triangles and localy, allows to interpolation this serie at nodes (or not) and globaly (or not).
The local coordinate system is the one defoned in Arch (see Arch documentation), i.e., the Okada local coordinate system.
Example