On Mon, Feb 4, 2013 at 5:45 PM, Kirk, Benjamin (JSC-EG311) <
benjamin.kir...@nasa.gov> wrote:

> I assume your test just reads a mesh and runs with it?
>

We started with an Exodus file.  Ran the SEACAS (
http://sourceforge.net/projects/seacas/) "loadbal" tool on it (see script
at the bottom of this email) to generate 4 nemesis files (for running with
4 processors).  Then we use the Nemesis reader to read that in and then
solve a small problem with it.  Then we write the result out as Nemesis
files and compare each of the 4 output files against 4 "gold" files
(Nemesis files from a previous run that we know are good).

Let me know if you need help with some of those steps...

Derek

#!/bin/bash

function print_usage
{
 echo "Usage: spread 4 cylinder.e"
}

if [ $# -lt 2 ]; then
 print_usage;
 exit 1;
fi

base=`basename "$2" .e`
base=`basename "$base" .exd`

ext=${2##*.}

loadbal -inertial -p "$1" -spread -suffix_mesh "$ext" -suffix_spread
"$ext" -No_subdirectory "$base"
------------------------------------------------------------------------------
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
_______________________________________________
Libmesh-devel mailing list
Libmesh-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/libmesh-devel

Reply via email to