Interactively Using the COMSOL API for Java in the Java Shell Window
From the Windows menu on the Home toolbar in the Windows version, choose Java Shell () to open the Java Shell window where you can enter COMSOL API for Java® commands to interactively update the model tree. The Java Shell window appears in the Model Builder, Application Builder, and Model Manager workspaces, and you can also open it from the Run Code section of the Developer ribbon toolbar in the Model Builder and from the Debug section of the Method ribbon toolbar in the Application Builder.
There is a command prompt (>) at the bottom left, indicating the input area where you can type your commands. To affect the model tree, commands should start with model., and then continue with available methods. Code completion is available as a tooltip to suggest available completions. For example, if you type model.bas, the tooltip shows that model.baseSystem() and model.baseSystem(String name) are available. You can also invoke code completion using Ctrl+Space.
If you type
model.baseSystem("mpa");
and then run that command by pressing Enter or clicking the Run button () in the bottom toolbar, the list in the Unit System section of the root note changes from SI to MPa, for example. A tooltip also appears when you select a completion, with information about what that command does, what it returns, and possible completions when available. The progress of long runs that involve such progress information (meshing or solving, for example) can be followed in the status bar. If you need to stop a run, click the Stop button () You can right-click in the input area to access options to Go to Method (for a method from the Application Builder); Cut, Copy, Paste, and Delete; Select All; and Indent and Format. You can also choose Undo and Redo. For all these options, the regular keyboard shortcuts are available.
Press Shift+Enter or click the Multiline Input button () in the bottom toolbar to make it possible to add and then run multiple lines of commands. Then press Enter to create a new line and press Ctrl+Enter to run the code. Press the up arrow or down arrow buttons or click the Previous in History () or Next in History () button to move up or down in the command history.
When you have run the API commands, they appear in the output area above the input area, together with a response from the system, which could, among other options, confirm a successful addition to the model (with a icon) or return an error (with a icon), if the command included some syntax error, for example. The response in the output area includes the model nodes that were changed or created by the code that was run. You can select all tree content using Ctrl+A and deselect all with Ctrl+D.
In the top toolbar, click the Go to Node button () to go to the node corresponding to the part of the model that the current output area output refers to. You can also right-click the output and choose Go to Node.
Click the Data Viewer button () to open the Data Viewer window where you can view the names and values (and also change values) of Java variables as well as model parameters and Application Builder declarations (this window is also available from the Windows menu and the Developer ribbon); see Viewing and Modifying Variables in the Data Viewer Window in the Application Builder Reference Manual for more information.
The Java Shell automatically creates local shell variables for output that belongs to the model object. By default, they get the same names as the tags of the model object. For example, if you type
model.geom().create("geom1",3)
you will then get the following output:
geom1 ==> Geometry 1
That is, you have now got a local variable in the Java Shell named geom1, so you can use geom1.angularUnit("deg") instead of model.geom("geom1").angularUnit("deg") from then on. If you create variables yourself, no variable is created automatically. A variable is only created automatically if there is no variable already pointing at the object.
Use the Collapse All () and Expand All () buttons to collapse all or expand all content in the Java Shell window.
Click the Only List Input button () to only display the input commands in the output area. Click the Display Session Content button () to show the entire session content in the output area. You can right-click the Session Content line or press Delete to remove that session content from the output area. In general, you can press Delete or right-click and choose Delete on top-level nodes in the output area. Deleting such content does not affect underlying data. If you have clicked the Display Session Content button and then right-click a variable definition, for example, in the output area, you can then choose Delete from Session to remove that variable from the session. If you want to remove something from the model object, you need to use methods from the model API.
Click the Clear Output Area button () to clear all content from the output area (no shell variables are removed, for example), or click the downward arrow next to the button to choose Clear Output Area. Use Reset Session to reset the session and clear the shell window, including shell variables. The Java Shell session is also reset when you open or start a new model. No content in the Java Shell window is saved between sessions. To make persistent changes, you need to change the model object and then save the model or use declarations in the Application Builder, for example.
You can select some text in a message and then right-click it and choose Copy (or press Ctrl+C) to copy that text, Copy Children to copy the content of any output from that input or Delete (or press Delete) to remove it from the output area. You can also choose to run some code again by right-clicking and choosing Run. Furthermore, you can right-click and send the message content to the input area or to the input area in the Chatbot window by choosing Send to Input or Send to Chatbot, respectively, or choose Details to open the message in a Details window where you can see the message in a separate view. The Details window is available for both inputs and outputs and can be resized. For inputs, the Details window shows the input code with syntax highlighting. Sending errors to the Chatbot window can be useful for instructing the chatbot to provide improved code suggestions.
If you write something to standard out or standard error in Java, it will then appear in the Java Shell window. For example, System.out.println("Foo").
The Java Shell supports the same things as methods in the Application Builder. For example, you can change declarations by typing the name of the declaration and then = followed by the new value. You can also call various help methods available in the Language Elements window in the Application Builder.