Group Abstract Group Abstract

Message Boards Message Boards

0
|
6.3K Views
|
8 Replies
|
6 Total Likes
View groups...
Share
Share this post:
GROUPS:

System Modeler Free Body Diagram Solving Capability

I am wondering if System Modeler can be used to solve free body diagram problems. This would be very powerful for statics classes. I have looked for a free body diagram diagram creator and I have yet to find a software that will solve for force and torque. I am also wondering how to create a mass of water of 1 kg with a specific temperature of 90Celsius in System Modeler.

POSTED BY: Peter Burbery
8 Replies
POSTED BY: Sergio Vargas
POSTED BY: Ankit Naik

You can probably use Wolfram|Alpha or browse the web to get the property of a substance. Using the Media library can provide you with some information, but it is a bit advanced.

POSTED BY: Ankit Naik

In the model of the electric kettle, if you select the Water component, you will find the heat capacity parameter C in the General tab.

For water, you can use 4182(heat capacity) x mass of water.

POSTED BY: Ankit Naik

Is there a way to cache or prefetch heat capacity data for an offline session of Wolfram System Modeler and Wolfram Mathematica?

ThermodynamicData may be what you are looking for, it produces data for all the substances in the list ThermodynamicData[]. For example, you can gather isochoric and isobaric specific heat capacities in a list of associations with

substances = ThermodynamicData[];
data = Function[substance, 
    Association[
     Prepend[Map[
       Function[property, 
        property -> 
         ThermodynamicData[substance, 
          property]], {"IsobaricHeatCapacity", 
        "IsochoricHeatCapacity"}], "Substance" -> substance]]] /@ 
   substances;
cleanData = Select[data, FreeQ[#, Missing] &];

Gathering this data will take a while. Afterwards, you can explore this data in a dataset with Dataset[cleanData]. Then you can either choose to move your project fully to System Modeler or maintain a mixed WL & System Modeler approach. But given the scope of your project I suspect using this data is not the main issue or possibly the ideal approach, so I won't go into too much detail about it (for instance, you can always pass parameter values to functions such as SystemModelSimulate, SystemModelPlot, CreateSystemModel and ConnectSystemModelComponents, as shown in their documentation pages, or you can also directly pass numeric data to CreateDataSystemModel). Unfortunately, your exercise explicitly has mixed phases (water and vapor) and phase transitions, which means you can't handle heat capacity as a parameter that does not change in time. Hence, I think in this case you may need to resort to more advanced libraries such as Modelica.Media as @Ankit Naik suggested. This library already contains a ton of media data, which would mean you would not need the WL to gather it. He may be able to give you more details.

POSTED BY: Sergio Vargas

Is there a way to cache or prefetch heat capacity data for an offline session of Wolfram System Modeler and Wolfram Mathematica? I am having trouble solving this homework question in Wolfram System Modeler:

I have tried the piston class but this is too complicated and so I don't think it matters what component I use, just the thermodynamic properties of the starting and ending states. Is there a way to model an entity of 1 kg of water with a starting temperature of 90Celsius and a final temperature of 250 Celsius? I am looking for a place to start with this thermodynamics question but don't know if I should take a components approach or analytical solving approach or if I should combine these approaches with graphing the system's quantities and integrating to find the work in the Modeling Center.

enter image description here @Ankit Naik @Sergio Vargas

POSTED BY: Peter Burbery

I am wondering what to do if I don't know the property of a substance I would like to model, for example what I am modeling carbon dioxide and I don't remember what the specific heat of carbon dioxide is. Is there a way to get this information in Wolfram System Modeler? I fixed the parameters problem. There was a viewing setting I had to change to see the parameters below the model when I clicked on a component.

POSTED BY: Peter Burbery

The parameters for heat capacity in J/kg are not displaying for the example Electric Kettle model copmonents.

POSTED BY: Peter Burbery
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard