The number of electrodes in the generated 10-10 System is insufficient, lacking the outermost ring compared to the standard 10-10 electrode placement.
CAD Modeling
4
Posts
2
Posters
58
Views
2
Watching
-
@lucky_lin thanks for your post. We will add the other points in an upcoming release.
In the meantime (as a workaround), you could add intermediate points like AF5 using a Python code like this
import XCoreModeling as xcm line = xcm.GeodesicPath(skin_surface, [AF7_pos, AF3_pos]) wires = xcm.GetWires(line) curve = wires[0].GetGeometry(True) interval = curve.ParameterRange AF5_pos = curve.Eval(0.5 * (interval.Start + interval.End))
-
@lucky_lin thanks for your post. We will add the other points in an upcoming release.
In the meantime (as a workaround), you could add intermediate points like AF5 using a Python code like this
import XCoreModeling as xcm line = xcm.GeodesicPath(skin_surface, [AF7_pos, AF3_pos]) wires = xcm.GetWires(line) curve = wires[0].GetGeometry(True) interval = curve.ParameterRange AF5_pos = curve.Eval(0.5 * (interval.Start + interval.End))