Lars Gregersen
COMSOL Employee
Please login with a confirmed email address before reporting spam
Posted:
7 years ago
2018/11/20 20:14 JST
We don't have access to the Parallel computation toolbox and hence can't give good advise about any error messages it produces.
The error means that you can't use the model variable as a parameter when calling a function that is supposed to run in parallel. Instead you must transfer the tag of the model to the function.
Inside the function you can then use
model = ModelUtil.model(tag);
to obtain a model variable after having connected to a Comsol Multiphysics Server.
-------------------
Lars Gregersen
Comsol Denmark
We don't have access to the Parallel computation toolbox and hence can't give good advise about any error messages it produces.
The error means that you can't use the model variable as a parameter when calling a function that is supposed to run in parallel. Instead you must transfer the tag of the model to the function.
Inside the function you can then use
model = ModelUtil.model(tag);
to obtain a model variable after having connected to a Comsol Multiphysics Server.