Jump to content

Talk:COMSOL Multiphysics

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Wonderfl (talk | contribs) at 15:35, 2 July 2017. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
WikiProject iconSoftware: Computing Unassessed
WikiProject iconThis article is within the scope of WikiProject Software, a collaborative effort to improve the coverage of software on Wikipedia. If you would like to participate, please visit the project page, where you can join the discussion and see a list of open tasks.
???This article has not yet received a rating on Wikipedia's content assessment scale.
???This article has not yet received a rating on the project's importance scale.
Taskforce icon
This article is supported by WikiProject Computing.

Additional features

Interfacing and batch jobs

COMSOL may be used from a batch file (.bat) by using the following command line entries. The first three lines calls COMSOL (comsolbatch), specifies the input file, specifies the output file (with the extension of _OUT), and records the log. The last three lines launches three different instances of the software after the batch job is completed. This is beneficial if one wants to open up all of the files once the batch job completes (e.g. each file is large, such as 40 GB or greater). Note that the following .bat file should be in the correct directory when double-clicked (e.g. " C:\Program Files\COMSOL\COMSOL52a\Multiphysics\bin\win64\" )

comsolbatch -inputfile C:\myfolder\myfile01.mph -outputfile C:\myfolder\myfile01_OUT.mph -batchlog C:\myfolder\myfile01_log.log

comsolbatch -inputfile C:\myfolder\myfile02.mph -outputfile C:\myfolder\myfile02_OUT.mph -batchlog C:\myfolder\myfile02_log.log

comsolbatch -inputfile C:\myfolder\myfile03.mph -outputfile C:\myfolder\myfile03_OUT.mph -batchlog C:\myfolder\myfile03_log.log

start C:\myfolder\myfile01_OUT.mph

start C:\myfolder\myfile02_OUT.mph

start C:\myfolder\myfile03_OUT.mph