Sponsored Content
Full Discussion: Differential Equations
Special Forums UNIX and Linux Applications High Performance Computing Differential Equations Post 302386508 by figaro on Tuesday 12th of January 2010 03:19:27 PM
Old 01-12-2010
GNU-Octave would indeed be the toolset of choice. You could also look into GSL - GNU Scientific Library - GNU Project - Free Software Foundation (FSF) and perhaps in combination with LAM/MPI Parallel Computing or Open MPI: Open Source High Performance Computing you may be able to use cluster computing.
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Can you perform mathematical equations in UNIX?

Hello one and all, I have a basic background in UNIX, but I was wondering if there is a way to perform simple mathematical equations (like multiplication, addition)? If so, is there a way to multiply values from a column by a value to produce a column with the answers? :confused: I am... (4 Replies)
Discussion started by: VioletFairy
4 Replies

2. UNIX for Dummies Questions & Answers

Tar differential backup

I am backing up some data to an NTFS formatted backup drive. I have to preserve the Unix permissions of the data being backed up and therfore use backup into a tar file. I would like to backup the differnential data in the tar file similiar to how Rsync works so as to save on backup time as it... (1 Reply)
Discussion started by: jelloir
1 Replies

3. UNIX for Advanced & Expert Users

Differential or Incremental backups in Unix

Hi, Just wanted to know is there any way that we can take differential or incremental backups in Unix(Solaris/AIX/Linux or Hpunix).What is the procedure. Is any doc avaialble on this? Its urgent and any help/suggestions would be highly appreciable. Regards, Ravi Dwivedi (3 Replies)
Discussion started by: dwiravi
3 Replies

4. UNIX for Dummies Questions & Answers

Awk - Two equations?

I really know barely anything about awk and the like but I have a bit of code I need help with. The bash script is meant to get my usage numbers from my ISP and it does so perfectly. However I want to know how much I can use each day. So to do this I would need to divide its output by the number... (5 Replies)
Discussion started by: Light_
5 Replies

5. Shell Programming and Scripting

Differential substring removal using coordinates

Hello all, this might be better suited for a bioinformatics forum, but I thought I'd try my luck here as well. I have several tabular text files of DNA sequence reads that appear as such: File_1.txt >H01BA45XW GATTACAGATTCGACATCCAACTGAGGCATT >H02BG78WR CCTTACAGACTGGGCATGAATATTGCATACC... (3 Replies)
Discussion started by: vectorborne5
3 Replies

6. UNIX for Dummies Questions & Answers

[SOLVED] Restoring differential backup files

I'm using a script (automysqlbackup) to dump mysql db's to .sql file followed by taking one full backup of the .sql file and the differential backups of the newer sql file every day using the tool diff. Now the backup destination folder contains files like, I would like to how do i restore... (3 Replies)
Discussion started by: csengineer
3 Replies

7. Shell Programming and Scripting

Try solver System of linear algebraic equations in Shell Bash

I want to try solving system of linear algebraic equations in Shell bash but i have any problems Value input is matrix and I dont know how to input matrix in Shell because that is dont support 2-dimensional array Please help me. Thank you so much (3 Replies)
Discussion started by: newbieseos
3 Replies
model-builder(1)					      General Commands Manual						  model-builder(1)

NAME
model-builder - graphical ODE simulator DESCRIPTION
Model Builder is a graphical ODE simulator. It allows the user to define, simulate and analyze arbitrary systems of Ordinary Diferential Equations. Features * Equation-based model definition. No need to learn to program to define and run your models. Just type-in you differential equations * Graphic output of simulation. You can save the graphics in the most common formats: png, svg, pdf, etc. * Spreadsheet view of the results. From the spreadsheet you can make customized plots from your variables. You can also export your data to a .csv text file * Latex rendering of your system of equations. Check you equation in clear mathematical notation. * Intuitive graphical interface. * Uncertainty analysis module. Implements a straightforward interface for the Bayesian Melding method. * Sensitivity analysis. Find out how sensitive your model is to variations in parameter values. GETTING STARTED
The best way to get started with ModelBuilder is open one of the models included with the distribution and look at it . Yes, it's that simple. So, if you have already intalled it, start Model-Builder by typing in the console: $ PyMB followed by <enter>. This will start Model-Buider . From now on I will assume that you know what a system of differential equations is, otherwise you probably should not be using Model-Builder. The larger box on the main frame, labeled "Differential Equations" is where we are going to start. On this text box you will write your system of equations (or a single equation) The syntax is that of python for mathematical expressions and functions and there are some conventions also, which I will explain below: * First of all, Model-Builder expects only the right-hand-side (RHS) of you equations to be present one per line in the equations box. The LHS is assumed to be of the form dy(t)/dt, dy_i/dt where i is an index to the the number of equations in your model. This number i will be used to refer to the state variables of the model ( y[i] ). This index, i, MUST start at 0, so if your model has 3 equations, their state variables will be y[0], y[1], and y[2] . * Another convention is the reference to model parameters. Any number of parameters may be included in the equations by the using this nomeclature: p[0], p[1], and so on. These parameter must the be specified one per line and in ascending order in the "Parameters" box. So the first line would be the definition of p[0], the second of p[1] and so forth. * The mathematical expressions that make up the equations and the parameters may include any function of the numpy python module. This allows for the easy contruction of models with a level of sophistication higher than that of a simple algebraic expression. Time may be referenced in the equations or parameter expressions by the variable "t". So if you want a parameter that is a function of time, you can simply write in the parameter box. * The user familiar with python will also be able to include more advanced structures in the model specification, such as Lambda functions for instance. Well, with that out of the way, it remains to explain the rest of the interface which is pretty much self-explanatory: * The initial values box should include one number for each equation (line) in the equations box. The numbers should be separated by spaces. * The start time is the time value at which the equations begin to be evaluated. The values of the state variables at this point in time are those specified in the initial conditions. * End time: You can figure this one out... * Time step: this is the time-step used in reporting the output of the simulation. The actual time step used by the numeric integrator is variable and chosen on the fly. Its normally much finer that what you specify here. * Critical time steps. Most user wil leave this box empty. * First Step: The size of the first step. Leave at 0 for automatic determination. * Min Step Size and Max Step Size: Respectively the minimum and maximum value for step sizes as chosen by variable step size algorithm. Leave at zero for automatic determination. * Full Output check box: If this box is checked a lot of useful information about the integration is included in the output. Check out the output spreadsheet to see what they are. * Show convergence message: if this box is checked, ModelBuilder will print "Integration successful" to the console after the integration is completed. Useful for debugging purposes only. Uncheck if you are doing uncertainty analyses. as it will slow things down. * Once you are done entering the necessary information for you model, Just press the start button to calculate your model. Enjoy! HOMEPAGE
http://model-builder.sourceforge.net/ AUTHOR
This manual page was written by Varun Hiremath <varunhiremath@gmail.com>, for the Debian project (but may be used by others). December 4, 2006 model-builder(1)
All times are GMT -4. The time now is 10:14 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy