<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Process section</title><link>https://sourceforge.net/p/freemuse/wiki/Process%2520section/</link><description>Recent changes to Process section</description><atom:link href="https://sourceforge.net/p/freemuse/wiki/Process%20section/feed" rel="self"/><language>en</language><lastBuildDate>Sat, 04 Jun 2011 08:02:24 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/freemuse/wiki/Process%20section/feed" rel="self" type="application/rss+xml"/><item><title>&lt;pre&gt;--- v1 
+++ v2 
@@ -22,32 +22,32 @@
 
 Processes using steps
 ---
-It can be that the name of a variable is used in more than one [basic model](Basic_models) and they overlap and should have different values. In processes you can model that as you can see in the following example:
-
-~~~~
+It can be that the name of a variable is used in more than one [basic model](Basic models) and they overlap and should have different values. In processes you can model that as you can see in the following example:
+
+~~~~
 &lt;instances&gt;
   &lt;instance name="v1" model="volume"&gt;
     &lt;parameters&gt;&lt;parameter name="#tmp"&gt;temp&lt;/parameter&gt;&lt;/parameters&gt;
   &lt;/instance&gt;
   &lt;instance name="v2" model="volume"&gt;
     &lt;parameters&gt;&lt;parameter name="#tmp"&gt;temp&lt;/parameter&gt;&lt;/parameters&gt;
   &lt;/instance&gt;
 &lt;/instances&gt;
 
 &lt;processes&gt;
   &lt;process name="step1"&gt;
     &lt;step name="v1"&gt;
       &lt;variable name="temp"&gt;15.2&lt;/variable&gt;
     &lt;/step&gt;
     &lt;step name="v2"&gt;
       &lt;variable name="temp"&gt;16.1&lt;/variable&gt;
     &lt;/step&gt;
     &lt;formula&gt;v1 v2+&lt;/formula&gt;
   &lt;/process&gt;
 &lt;/processes&gt;
 &lt;calculation&gt;
 ...
 &lt;/calculation&gt;
 ~~~~
 
-Here both instances of the [basic model](Basic_models) __volume__ use the variable __temp__, but in process __step1__ they should have different values. That can be accomplished using steps inside of process definitions. A step defines [variables](Variables) for a specific instance used in the formula.
+Here both instances of the [basic model](Basic models) __volume__ use the variable __temp__, but in process __step1__ they should have different values. That can be accomplished using steps inside of process definitions. A step defines [variables](Variables) for a specific instance used in the formula.
&lt;/pre&gt;</title><link>https://sourceforge.net/p/freemuse/wiki/Process%2520section/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -22,32 +22,32 @@
 
 Processes using steps
 ---
-It can be that the name of a variable is used in more than one [basic model](Basic_models) and they overlap and should have different values. In processes you can model that as you can see in the following example:
-
-~~~~
+It can be that the name of a variable is used in more than one [basic model](Basic models) and they overlap and should have different values. In processes you can model that as you can see in the following example:
+
+~~~~
 &lt;instances&gt;
   &lt;instance name="v1" model="volume"&gt;
     &lt;parameters&gt;&lt;parameter name="#tmp"&gt;temp&lt;/parameter&gt;&lt;/parameters&gt;
   &lt;/instance&gt;
   &lt;instance name="v2" model="volume"&gt;
     &lt;parameters&gt;&lt;parameter name="#tmp"&gt;temp&lt;/parameter&gt;&lt;/parameters&gt;
   &lt;/instance&gt;
 &lt;/instances&gt;
 
 &lt;processes&gt;
   &lt;process name="step1"&gt;
     &lt;step name="v1"&gt;
       &lt;variable name="temp"&gt;15.2&lt;/variable&gt;
     &lt;/step&gt;
     &lt;step name="v2"&gt;
       &lt;variable name="temp"&gt;16.1&lt;/variable&gt;
     &lt;/step&gt;
     &lt;formula&gt;v1 v2+&lt;/formula&gt;
   &lt;/process&gt;
 &lt;/processes&gt;
 &lt;calculation&gt;
 ...
 &lt;/calculation&gt;
 ~~~~
 
-Here both instances of the [basic model](Basic_models) __volume__ use the variable __temp__, but in process __step1__ they should have different values. That can be accomplished using steps inside of process definitions. A step defines [variables](Variables) for a specific instance used in the formula.
+Here both instances of the [basic model](Basic models) __volume__ use the variable __temp__, but in process __step1__ they should have different values. That can be accomplished using steps inside of process definitions. A step defines [variables](Variables) for a specific instance used in the formula.
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Marco Wolf</dc:creator><pubDate>Sat, 04 Jun 2011 08:02:24 -0000</pubDate><guid>https://sourceforge.net1ffee17907f5b5b599c8c1ad1698327f7658383a</guid></item><item><title>Process section
===
The processes block defines the measurement process itself. You can divide the process by a number of processes and in each process you can set local [variables](Variables). Each process must have a name that can then be used in calculating the overall uncertainty in the [calculation section](Calculation section).

~~~~
&lt;processes&gt;
  &lt;process name="v1"&gt;
    &lt;variable name="time"&gt; start 10+&lt;/variable&gt;
    ...
    &lt;formula&gt;s1 time+&lt;/formula&gt;
  &lt;/process&gt;
  &lt;process name="v2"&gt;
    &lt;variable name="time"&gt; start 20+&lt;/variable&gt;
    ...
    &lt;formula&gt;s1 time+ &lt;/formula&gt;
  &lt;/process&gt;
  ...
&lt;/processes&gt;
~~~~

In the example we define a variable __time__, which is calculated by the addition of a global variable from the calculation section called __start__ with 10 for process __v1__ and with 20 for process __v2__. If the variable __time__ is used in a defintion of a distribution in an instance from the [instances section](Instances section), the value of __time__ of the current process will be used for the evaluation. After all instances returned their results, the formula of the process is evaluated. In the example an instance __s1__ and the local variable __time__ are added for the result of process __v1__ and __v2__ respectively.

Processes using steps
---
It can be that the name of a variable is used in more than one [basic model](Basic_models) and they overlap and should have different values. In processes you can model that as you can see in the following example:

~~~~
&lt;instances&gt;
  &lt;instance name="v1" model="volume"&gt;
    &lt;parameters&gt;&lt;parameter name="#tmp"&gt;temp&lt;/parameter&gt;&lt;/parameters&gt;
  &lt;/instance&gt;
  &lt;instance name="v2" model="volume"&gt;
    &lt;parameters&gt;&lt;parameter name="#tmp"&gt;temp&lt;/parameter&gt;&lt;/parameters&gt;
  &lt;/instance&gt;
&lt;/instances&gt;

&lt;processes&gt;
  &lt;process name="step1"&gt;
    &lt;step name="v1"&gt;
      &lt;variable name="temp"&gt;15.2&lt;/variable&gt;
    &lt;/step&gt;
    &lt;step name="v2"&gt;
      &lt;variable name="temp"&gt;16.1&lt;/variable&gt;
    &lt;/step&gt;
    &lt;formula&gt;v1 v2+&lt;/formula&gt;
  &lt;/process&gt;
&lt;/processes&gt;
&lt;calculation&gt;
...
&lt;/calculation&gt;
~~~~

Here both instances of the [basic model](Basic_models) __volume__ use the variable __temp__, but in process __step1__ they should have different values. That can be accomplished using steps inside of process definitions. A step defines [variables](Variables) for a specific instance used in the formula.
</title><link>https://sourceforge.net/p/freemuse/wiki/Process%2520section/</link><description>Process section
===
The processes block defines the measurement process itself. You can divide the process by a number of processes and in each process you can set local [variables](Variables). Each process must have a name that can then be used in calculating the overall uncertainty in the [calculation section](Calculation section).

~~~~
&lt;processes&gt;
  &lt;process name="v1"&gt;
    &lt;variable name="time"&gt; start 10+&lt;/variable&gt;
    ...
    &lt;formula&gt;s1 time+&lt;/formula&gt;
  &lt;/process&gt;
  &lt;process name="v2"&gt;
    &lt;variable name="time"&gt; start 20+&lt;/variable&gt;
    ...
    &lt;formula&gt;s1 time+ &lt;/formula&gt;
  &lt;/process&gt;
  ...
&lt;/processes&gt;
~~~~

In the example we define a variable __time__, which is calculated by the addition of a global variable from the calculation section called __start__ with 10 for process __v1__ and with 20 for process __v2__. If the variable __time__ is used in a defintion of a distribution in an instance from the [instances section](Instances section), the value of __time__ of the current process will be used for the evaluation. After all instances returned their results, the formula of the process is evaluated. In the example an instance __s1__ and the local variable __time__ are added for the result of process __v1__ and __v2__ respectively.

Processes using steps
---
It can be that the name of a variable is used in more than one [basic model](Basic_models) and they overlap and should have different values. In processes you can model that as you can see in the following example:

~~~~
&lt;instances&gt;
  &lt;instance name="v1" model="volume"&gt;
    &lt;parameters&gt;&lt;parameter name="#tmp"&gt;temp&lt;/parameter&gt;&lt;/parameters&gt;
  &lt;/instance&gt;
  &lt;instance name="v2" model="volume"&gt;
    &lt;parameters&gt;&lt;parameter name="#tmp"&gt;temp&lt;/parameter&gt;&lt;/parameters&gt;
  &lt;/instance&gt;
&lt;/instances&gt;

&lt;processes&gt;
  &lt;process name="step1"&gt;
    &lt;step name="v1"&gt;
      &lt;variable name="temp"&gt;15.2&lt;/variable&gt;
    &lt;/step&gt;
    &lt;step name="v2"&gt;
      &lt;variable name="temp"&gt;16.1&lt;/variable&gt;
    &lt;/step&gt;
    &lt;formula&gt;v1 v2+&lt;/formula&gt;
  &lt;/process&gt;
&lt;/processes&gt;
&lt;calculation&gt;
...
&lt;/calculation&gt;
~~~~

Here both instances of the [basic model](Basic_models) __volume__ use the variable __temp__, but in process __step1__ they should have different values. That can be accomplished using steps inside of process definitions. A step defines [variables](Variables) for a specific instance used in the formula.
</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Marco Wolf</dc:creator><pubDate>Sat, 04 Jun 2011 08:01:51 -0000</pubDate><guid>https://sourceforge.net5557d93a9e2477c18e0ed22e366a5df7ca35f626</guid></item></channel></rss>