Changes between Version 1 and Version 2 of RunEcosimViaConsoleApplication


Ignore:
Timestamp:
2010-12-26 10:20:47 (13 years ago)
Author:
jeroens
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RunEcosimViaConsoleApplication

    v1 v2  
    11= Run Ecosim via Console Application = 
    22 
    3 This tutorial will guide you through how to make an console application that would run Ecosim and Ecospace.  You can extend these to make applications such as monte carlos routines, or create/modify multiple databases. 
     3This tutorial will guide you through how to make an console application that would run Ecosim and Ecospace. You can extend these to make applications such as monte carlos routines, or create/modify multiple databases. 
    44 
    55This tutorial will extend the EweConsoleAppExample tutorial. 
     
    1515 }}} 
    1616  
    17  3. Add the following code after the sub routine {{{ End Sub }}} which is the function that you defined in step (7).  The following sub routine will print the biomass of group 1 at every timestep. 
     17 3. Add the following code after the sub routine {{{ End Sub }}} which is the function that you defined in step (7). The following sub routine will print the biomass of group 1 at every timestep. 
    1818  
    1919 {{{ 
     
    2828  }}} 
    2929   
    30   4. Hit F5 or in the menu, Debug>Start Debugging.  You should get the following output. 
     30  4. Hit F5 or in the menu, Debug>Start Debugging. You should get the following output. 
    3131     
    3232  {{{ 
     
    3939  }}} 
    4040 
    41 The .vb file can be found at the bottom of this page.  Simply replace this file with the EwE7.vb found in the EweConsoleAppExample tutorial. 
     41You can run the code by loading the EweConsoleAppExample tutorial, and overwrite its file EwE7.vb with the code file found at the bottom of this page.