<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://source.geography.bristol.ac.uk/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Asis</id>
	<title>SourceWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://source.geography.bristol.ac.uk/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Asis"/>
	<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/wiki/Special:Contributions/Asis"/>
	<updated>2026-04-05T06:44:47Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.8</generator>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=BISMG&amp;diff=6599</id>
		<title>BISMG</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=BISMG&amp;diff=6599"/>
		<updated>2009-11-11T16:32:00Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Bristol Ice Sheet Modellers Group!=&lt;br /&gt;
&lt;br /&gt;
This is where Tony Payne's group working on ice sheet modelling share progress updates and ideas and other useful information.&lt;br /&gt;
&lt;br /&gt;
'''Members please [[BISMG:Main | click here]]'''&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=Asis&amp;diff=6594</id>
		<title>Asis</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=Asis&amp;diff=6594"/>
		<updated>2009-11-11T14:58:44Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
= ASIS - Amundsen Sea embayment project Ice Sheet model development = &lt;br /&gt;
&lt;br /&gt;
'''Purpose'''&lt;br /&gt;
The title comes from ASEP, the Amundsen Sea Embayment Project.  &lt;br /&gt;
This wiki page is intended as a forum for discussing and resolving ice sheet model development issues and data available relating to Tony Payne's WAIS project and ASEP.&lt;br /&gt;
&lt;br /&gt;
'''Access'''&lt;br /&gt;
Most of this wiki area is currently accessible only to developers involved in the relevant projects.  If you think you should have access then please contact Rupert Gladstone (r.gladstone@bris.ac.uk) or Tony Payne in the first instance.&lt;br /&gt;
&lt;br /&gt;
'''Members please [[ASIS:Main | click here]]'''&lt;br /&gt;
&lt;br /&gt;
==Third Party Tools ==&lt;br /&gt;
&lt;br /&gt;
* [[CHOMBO]]&lt;br /&gt;
* [[SAMRAI]]&lt;br /&gt;
* [[VisIt]]&lt;br /&gt;
* [[ChomboVis]]&lt;br /&gt;
* [[Xming]]&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=CHOMBO&amp;diff=5819</id>
		<title>CHOMBO</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=CHOMBO&amp;diff=5819"/>
		<updated>2008-11-12T12:43:29Z</updated>

		<summary type="html">&lt;p&gt;Asis: added section on contents of d/f/o/p directories&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;CHOMBO&lt;br /&gt;
&lt;br /&gt;
=Introduction=&lt;br /&gt;
&lt;br /&gt;
=Installation=&lt;br /&gt;
&lt;br /&gt;
This page describes what I (Gethin) did to install and run CHOMBO.  In the first instance, I worked on dyln (an x86_64 machine) and used the GNU C and Fortran compilers (gcc, g++ and gfortran).&lt;br /&gt;
&lt;br /&gt;
First we will look at the prerquisites, an MPI implementation and HDF5, and then CHOMBO itself.&lt;br /&gt;
&lt;br /&gt;
==MPICH v1.2.6==&lt;br /&gt;
&lt;br /&gt;
Only an MPI 1.2 compliant C binding is required to run CHOMBO in parallel.  There are problems getting gfortran to work with both MPICH v1.2.5 and v1.2.6, so I will omit it here.  '''Beware''', however of picking up e.g. the Sun fortran compiler as '''f77''' and '''f90''' and thus getting a mixed compiler MPICH build.&lt;br /&gt;
&lt;br /&gt;
Get tar ball:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
wget ftp://ftp.mcs.anl.gov/pub/mpi/old/mpich-1.2.6.tar.gz&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Treating dylan as an SMP machine (multi-core with shared memory), we will build a shared memory MPI installation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
./configure --prefix=/gsb6/ggdagw/mpich/mpich-1.2.6/ch_shmem --with-device=ch_shmem -cc=gcc -c++=g++ \&lt;br /&gt;
-fc=gfortran -f90=gfortran -cflags=&amp;quot;-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64&amp;quot; \&lt;br /&gt;
&amp;gt;&amp;amp; config.out&lt;br /&gt;
make&lt;br /&gt;
make testing&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The cflags enable files &amp;gt; 2GB.&lt;br /&gt;
&lt;br /&gt;
'''Note''' that Fortran binding will not be built, as MPICH will complain that it can't access the command line through gfortran.  '''Also''' that I needed to copt '''mpicxx''' to '''mpiCC''' in the install directory, for some reason..&lt;br /&gt;
&lt;br /&gt;
==HDF5 v1.4.4==&lt;br /&gt;
&lt;br /&gt;
Get from:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ftp://hdf.ncsa.uiuc.edu/HDF5/prev-releases&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===For Serial Build===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; &lt;br /&gt;
./configure --prefix=/gsb6/ggdagw/hdf5/hdf5-1.4.4/serial --enable-production&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===For Parallel Build===&lt;br /&gt;
&lt;br /&gt;
Tested MPI-IO with the program Sample_mpio.c from PHDF5 instructions (appendix) in conjunction with shmem MPI build and tests passed OK.&lt;br /&gt;
&lt;br /&gt;
Straight from the box, we would have a broken build, due to problems with mpicc and DL_OPEN support.  So, we will make a cheeky edit.  In the file '''config/commence.in''', change the line that defines the LT_LINK_EXE variable to remove the '''-dlopen self -rpath $(libdir)''' options.&lt;br /&gt;
&lt;br /&gt;
Note that we've disabled linking against shared libraries.  We could have gone the other way and added '''-fPIC'' to the build flags.&lt;br /&gt;
&lt;br /&gt;
Now we configure and build:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
CC=/gsb6/ggdagw/mpich/mpich-1.2.6/ch_shmem/bin/mpicc ./configure --disable-shared \&lt;br /&gt;
--prefix=/gsb6/ggdagw/hdf5/hdf5-1.4.4/parallel&lt;br /&gt;
make&lt;br /&gt;
make check&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==HDF5 v1.6.7==&lt;br /&gt;
&lt;br /&gt;
We could use this too.  For a parallel build, for example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
CC=/gsb6/ggdagw/mpich/mpich-1.2.6/ch_shmem/bin/mpicc ./configure --disable-shared \&lt;br /&gt;
--prefix=/gsb6/ggdagw/hdf5/hdf5-1.6.7/parallel&lt;br /&gt;
make&lt;br /&gt;
make check&lt;br /&gt;
make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Seems to be OK.&lt;br /&gt;
&lt;br /&gt;
==CHOMBO==&lt;br /&gt;
The Oct07 release is installed in '''/gsb6/ggdagw/chombo/Chombo-2.0'''.&lt;br /&gt;
&lt;br /&gt;
===Without HDF5===&lt;br /&gt;
lib/mk/Make.defs.local:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
DIM           = 2&lt;br /&gt;
DEBUG         = TRUE&lt;br /&gt;
OPT           = TRUE&lt;br /&gt;
PRECISION     = DOUBLE&lt;br /&gt;
PROFILE       = FALSE&lt;br /&gt;
CXX           = g++&lt;br /&gt;
FC            = gfortran&lt;br /&gt;
MPI           = FALSE&lt;br /&gt;
USE_HDF       = FALSE&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
make lib&lt;br /&gt;
make test&lt;br /&gt;
make run&lt;br /&gt;
&lt;br /&gt;
Looks like the tests pass '''BUT uses -m32''' during compilation and so a 32bit executable results.  This is fine here (since x86_64 will also handle 32bit exes), but it causes a problem when we try and link against 64bit dependencies, such as HDF5 (see below for remedy).&lt;br /&gt;
&lt;br /&gt;
===With HDF5 compiled in serial mode===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
USE_64 = TRUE&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
adds -m64 to the GNU compiler flags and so object code is created for the x86_64 architecture, and so it will link against the HDF libraries which are built for x86_64.  This is not what the documentation says the makefile variable is for!  Hey ho.  Add it in.&lt;br /&gt;
&lt;br /&gt;
* e.g. export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/gsb6/ggdagw/hdf5/hdf5-1.4.4/serial/lib&lt;br /&gt;
&lt;br /&gt;
required to find shared object files, else tests will not run.  Tests look OK for both v1.4.4 and v1.6.7 of HDF.&lt;br /&gt;
&lt;br /&gt;
===With MPI and parallel HDF5===&lt;br /&gt;
&lt;br /&gt;
Add in to Make.defs.local:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MPICXX        = /gsb6/ggdagw/mpich/mpich-1.2.6/ch_shmem/bin/mpiCC&lt;br /&gt;
HDFMPIINCFLAGS= -I/gsb6/ggdagw/hdf5/hdf5-1.4.4/parallel/include&lt;br /&gt;
HDFMPILIBFLAGS= -L/gsb6/ggdagw/hdf5/hdf5-1.4.4/parallel/lib -lhdf5 -lz&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cd chombo/lib&lt;br /&gt;
make lib&lt;br /&gt;
make test&lt;br /&gt;
make run&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Tests look to pass OK for both HDF5v1.4.4 and v1.6.7.&lt;br /&gt;
&lt;br /&gt;
===Running the AMRUpwind example from Gethin's build===&lt;br /&gt;
&lt;br /&gt;
* Ensure that '''/gsb6/ggdagw/mpich/mpich-1.2.6/ch_shmem/bin''' is in your path&lt;br /&gt;
* copy '''~ggdagw/chombo/Chombo-2.0/example''' to your location of choice&lt;br /&gt;
* cd AMRUpwind&lt;br /&gt;
* edit:&lt;br /&gt;
** '''GNUmakefile''' such that: '''CHOMBO_HOME = ../../chombo/Chombo-2.0/lib'''&lt;br /&gt;
** '''exec/GNUmakefile''' such that: '''CHOMBO_HOME = ../../../chombo/Chombo-2.0/lib'''&lt;br /&gt;
* make clean&lt;br /&gt;
* make example&lt;br /&gt;
* make run&lt;br /&gt;
&lt;br /&gt;
===Useful informatiomn on files within example===&lt;br /&gt;
&lt;br /&gt;
After compilation, you will find 4 directories created within the example directory. Each contains subdirectories based on the particular build (e.g., 2d.Linux.64.mpiCC.gfortran.DEBUG.OPT.MPI/).  These are:&lt;br /&gt;
&lt;br /&gt;
* '''d''' which contains paths for any files used in the compilation; most usefully .H etc files.&lt;br /&gt;
* '''f''' which contains fortan code after it has been parsed; particularly useful in the case of ChF files (.f). &lt;br /&gt;
* '''o''' which contains usual .o objects.&lt;br /&gt;
* '''p''' which also contains parsed versions of any fortran code (.cpre is same as .f above).&lt;br /&gt;
&lt;br /&gt;
===Changes to Makefiles for Fortran90===&lt;br /&gt;
&lt;br /&gt;
In '''Chombo-2.0/lib/mk/Make.example''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
src_extensions := .cpp .ChF .F .f .c .f90&lt;br /&gt;
vpath %.cpp $(src_dirs)&lt;br /&gt;
vpath %.ChF $(src_dirs)&lt;br /&gt;
vpath %.F   $(src_dirs)&lt;br /&gt;
vpath %.f   $(src_dirs)&lt;br /&gt;
vpath %.c   $(src_dirs)&lt;br /&gt;
vpath %.f90 $(src_dirs)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In '''Chombo-2.0/lib/mk/Make.rules''':&lt;br /&gt;
&lt;br /&gt;
line 104:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
src_wildcard := *.cpp *.ChF *.F *.f *.f90&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
add after line ~350: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
o/$(config)/%.o : %.f90  d/$(config)/%.d&lt;br /&gt;
        $(QUIET)$(FC) $(FFLAGS) $(XTRAFFLAGS) $(fcompflag) $&amp;lt; $(fobjflag)$@&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
add after line ~413:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
d/$(config)/%.d : %.f90 d/$(config)/.dummy&lt;br /&gt;
        @if [ x&amp;quot;$(QUIET)&amp;quot; != x&amp;quot;@&amp;quot; ]; then echo Depending $&amp;lt; ...; fi&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Tested '''example/expHeat/parVersion''' by replacing '''heatfort.F''' with '''heatfort.f90'''.&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=VisIt&amp;diff=5767</id>
		<title>VisIt</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=VisIt&amp;diff=5767"/>
		<updated>2008-10-31T16:32:09Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installing [https://wci.llnl.gov/codes/visit/home.html VisIt] 1.10.0==&lt;br /&gt;
&lt;br /&gt;
These are notes from Rupert Gladstone.  I would need to re-build visit to ensure that these notes are correct.&lt;br /&gt;
&lt;br /&gt;
1. Create the directory in which you wish to install VisIt, and cd to this &lt;br /&gt;
directory.&lt;br /&gt;
&lt;br /&gt;
2. Download the [https://wci.llnl.gov/codes/visit/1.10.0/build_visit build VisIt] script.&lt;br /&gt;
&lt;br /&gt;
3. Download the VisIt 1.10.0 sources from the [https://wci.llnl.gov/codes/visit/source.html downloads] page.&lt;br /&gt;
&lt;br /&gt;
4. Under Setup in the [https://wci.llnl.gov/codes/visit/1.10.0/build_visit build VisIt] script &lt;br /&gt;
is a list of required 3rd party software.  Download all the 'must have' tarballs and also &lt;br /&gt;
HDF5, NetCDF, szip.  These can be downloaded from the bottom of the &lt;br /&gt;
[https://wci.llnl.gov/codes/visit/source.html downloads] &lt;br /&gt;
page.&lt;br /&gt;
&lt;br /&gt;
5. (optional) If you want to use an existing installation of the 3rd party software &lt;br /&gt;
(note that that in some cases VisIt requires older versions) you can &lt;br /&gt;
force this with [[VisIt:compile_hack | this hack]] (uses Python as an example).&lt;br /&gt;
&lt;br /&gt;
6. Run the [https://wci.llnl.gov/codes/visit/1.10.0/build_visit build VisIt] script.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Further notes:&lt;br /&gt;
&lt;br /&gt;
I also had to download Imaging-1.1.6.tar.gz from &lt;br /&gt;
[http://effbot.org/downloads/ here], prompted by a message in the build log.&lt;br /&gt;
&lt;br /&gt;
Note that this should give a valid install of VisIt, but VisIt will still not function properly &lt;br /&gt;
when used remotely via ssh/exceed.  This is because exceed does not support openGL.  See also this &lt;br /&gt;
[http://www.linuxforums.org/forum/linux-desktop-x-windows/32497-glx-extension-missing.html Linux forum comment]&lt;br /&gt;
and the &lt;br /&gt;
[http://connectivity.hummingbird.com/products/nc/exceed/index.html?cks=y exceed website]&lt;br /&gt;
for more info.&lt;br /&gt;
It would appear that exceed3d could be purchased to get round this problem.&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=VisIt&amp;diff=5766</id>
		<title>VisIt</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=VisIt&amp;diff=5766"/>
		<updated>2008-10-31T15:22:46Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installing [https://wci.llnl.gov/codes/visit/home.html VisIt] 1.10.0==&lt;br /&gt;
&lt;br /&gt;
These are notes from Rupert Gladstone.  I would need to re-build visit to ensure that these notes are correct.&lt;br /&gt;
&lt;br /&gt;
Download the [https://wci.llnl.gov/codes/visit/1.10.0/build_visit build VisIt] script.&lt;br /&gt;
&lt;br /&gt;
Download the VisIt sources from the [https://wci.llnl.gov/codes/visit/source.html downloads] page.&lt;br /&gt;
&lt;br /&gt;
Under Setup in the [https://wci.llnl.gov/codes/visit/1.10.0/build_visit build VisIt] script &lt;br /&gt;
is a list of required 3rd party software.  Download all the 'must have' tarballs and &lt;br /&gt;
HDF5, NetCDF, szip.  These can be downloaded from the bottom of the &lt;br /&gt;
[https://wci.llnl.gov/codes/visit/source.html VisIt downloads] &lt;br /&gt;
page.&lt;br /&gt;
&lt;br /&gt;
I also had to download Imaging-1.1.6.tar.gz from &lt;br /&gt;
[http://effbot.org/downloads/ here], prompted by a message in the build log.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you want to use an existing installation of the 3rd party software &lt;br /&gt;
(note that that in some cases VisIt requires older versions) you can &lt;br /&gt;
force this with the following [[VisIt:compile_hack | hack]] (uses Python as an example):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Run the [https://wci.llnl.gov/codes/visit/1.10.0/build_visit build VisIt] script.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that this should give a valid install of VisIt, but VisIt will still not functiona properly &lt;br /&gt;
when used remotely via ssh/exceed.  This is because exceed does not support openGL.  See also this &lt;br /&gt;
[http://www.linuxforums.org/forum/linux-desktop-x-windows/32497-glx-extension-missing.html Linux forum comment]&lt;br /&gt;
and the &lt;br /&gt;
[http://connectivity.hummingbird.com/products/nc/exceed/index.html?cks=y exceed website]&lt;br /&gt;
for more info.&lt;br /&gt;
It would appear that exceed3d could be purchased to get round this problem.&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=VisIt:compile_hack&amp;diff=5765</id>
		<title>VisIt:compile hack</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=VisIt:compile_hack&amp;diff=5765"/>
		<updated>2008-10-31T15:22:36Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you want to use an existing installation of the 3rd party software &lt;br /&gt;
(note that that in some cases VisIt requires older versions) you can &lt;br /&gt;
force this with the following hack (uses Python as an example):&lt;br /&gt;
&lt;br /&gt;
From the directory you run build_visit from, run the&lt;br /&gt;
command:&lt;br /&gt;
&lt;br /&gt;
   mkdir -p visit/python/2.5/linux-x86_64_gcc-4.1.2 (last bit is architecture/compiler dependant)&lt;br /&gt;
&lt;br /&gt;
This will cause build_visit to think python is already installed,&lt;br /&gt;
skipping the compile/install of it.  However, after build_visit&lt;br /&gt;
completes, you'll have to change your `host`.conf.  Simply change the&lt;br /&gt;
&lt;br /&gt;
   PYDIR=/some/long/directory/name&lt;br /&gt;
&lt;br /&gt;
line to:&lt;br /&gt;
&lt;br /&gt;
   PYDIR=/usr&lt;br /&gt;
&lt;br /&gt;
This will cause VisIt to use your system's python.&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=VisIt:compile_hack_hack&amp;diff=5764</id>
		<title>VisIt:compile hack hack</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=VisIt:compile_hack_hack&amp;diff=5764"/>
		<updated>2008-10-31T15:21:47Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you want to use an existing installation of the 3rd party software &lt;br /&gt;
(note that that in some cases VisIt requires older versions) you can &lt;br /&gt;
force this with the following hack (uses Python as an example):&lt;br /&gt;
&lt;br /&gt;
From the directory you run build_visit from, run the&lt;br /&gt;
command:&lt;br /&gt;
&lt;br /&gt;
   mkdir -p visit/python/2.5/linux-x86_64_gcc-4.1.2 (last bit is architecture/compiler dependant)&lt;br /&gt;
&lt;br /&gt;
This will cause build_visit to think python is already installed,&lt;br /&gt;
skipping the compile/install of it.  However, after build_visit&lt;br /&gt;
completes, you'll have to change your `host`.conf.  Simply change the&lt;br /&gt;
&lt;br /&gt;
   PYDIR=/some/long/directory/name&lt;br /&gt;
&lt;br /&gt;
line to:&lt;br /&gt;
&lt;br /&gt;
   PYDIR=/usr&lt;br /&gt;
&lt;br /&gt;
This will cause VisIt to use your system's python.&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=VisIt&amp;diff=5763</id>
		<title>VisIt</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=VisIt&amp;diff=5763"/>
		<updated>2008-10-31T15:21:36Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installing [https://wci.llnl.gov/codes/visit/home.html VisIt] 1.10.0==&lt;br /&gt;
&lt;br /&gt;
These are notes from Rupert Gladstone.  I would need to re-build visit to ensure that these notes are correct.&lt;br /&gt;
&lt;br /&gt;
Download the [https://wci.llnl.gov/codes/visit/1.10.0/build_visit build VisIt] script.&lt;br /&gt;
&lt;br /&gt;
Download the VisIt sources from the [https://wci.llnl.gov/codes/visit/source.html downloads] page.&lt;br /&gt;
&lt;br /&gt;
Under Setup in the [https://wci.llnl.gov/codes/visit/1.10.0/build_visit build VisIt] script &lt;br /&gt;
is a list of required 3rd party software.  Download all the 'must have' tarballs and &lt;br /&gt;
HDF5, NetCDF, szip.  These can be downloaded from the bottom of the &lt;br /&gt;
[https://wci.llnl.gov/codes/visit/source.html VisIt downloads] &lt;br /&gt;
page.&lt;br /&gt;
&lt;br /&gt;
I also had to download Imaging-1.1.6.tar.gz from &lt;br /&gt;
[http://effbot.org/downloads/ here], prompted by a message in the build log.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you want to use an existing installation of the 3rd party software &lt;br /&gt;
(note that that in some cases VisIt requires older versions) you can &lt;br /&gt;
force this with the following [[VisIt:compile_hack hack]] (uses Python as an example):&lt;br /&gt;
&lt;br /&gt;
From the directory you run build_visit from, run the&lt;br /&gt;
command:&lt;br /&gt;
&lt;br /&gt;
   mkdir -p visit/python/2.5/linux-x86_64_gcc-4.1.2 (last bit is architecture/compiler dependant)&lt;br /&gt;
&lt;br /&gt;
This will cause build_visit to think python is already installed,&lt;br /&gt;
skipping the compile/install of it.  However, after build_visit&lt;br /&gt;
completes, you'll have to change your `host`.conf.  Simply change the&lt;br /&gt;
&lt;br /&gt;
   PYDIR=/some/long/directory/name&lt;br /&gt;
&lt;br /&gt;
line to:&lt;br /&gt;
&lt;br /&gt;
   PYDIR=/usr&lt;br /&gt;
&lt;br /&gt;
This will cause VisIt to use your system's python.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Run the [https://wci.llnl.gov/codes/visit/1.10.0/build_visit build VisIt] script.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that this should give a valid install of VisIt, but VisIt will still not functiona properly &lt;br /&gt;
when used remotely via ssh/exceed.  This is because exceed does not support openGL.  See also this &lt;br /&gt;
[http://www.linuxforums.org/forum/linux-desktop-x-windows/32497-glx-extension-missing.html Linux forum comment]&lt;br /&gt;
and the &lt;br /&gt;
[http://connectivity.hummingbird.com/products/nc/exceed/index.html?cks=y exceed website]&lt;br /&gt;
for more info.&lt;br /&gt;
It would appear that exceed3d could be purchased to get round this problem.&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=Asis&amp;diff=5762</id>
		<title>Asis</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=Asis&amp;diff=5762"/>
		<updated>2008-10-31T14:46:21Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Projects]]&lt;br /&gt;
&lt;br /&gt;
= ASIS - Amundsen Sea embayment project Ice Sheet model development = &lt;br /&gt;
&lt;br /&gt;
'''Purpose'''&lt;br /&gt;
The title comes from ASEP, the Amundsen Sea Embayment Project.  &lt;br /&gt;
This wiki page is intended as a forum for discussing and resolving ice sheet model development issues and data available relating to Tony Payne's WAIS project and ASEP.&lt;br /&gt;
&lt;br /&gt;
'''Access'''&lt;br /&gt;
Most of this wiki area is currently accessible only developers involved in the relevant projects.  If you think you should have access then please contact Rupert Gladstone (r.gladstone@bris.ac.uk) or Tony Payne in the first instance.&lt;br /&gt;
&lt;br /&gt;
'''Members please [[ASIS:Main | click here]]'''&lt;br /&gt;
&lt;br /&gt;
==Third Party Tools ==&lt;br /&gt;
&lt;br /&gt;
* [[CHOMBO]]&lt;br /&gt;
* [[SAMRAI]]&lt;br /&gt;
* [[VisIt]]&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Flotation_m917_17.jpg&amp;diff=5760</id>
		<title>File:Flotation m917 17.jpg</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Flotation_m917_17.jpg&amp;diff=5760"/>
		<updated>2008-10-31T14:44:41Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Flotation_m917_m.jpg&amp;diff=5758</id>
		<title>File:Flotation m917 m.jpg</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Flotation_m917_m.jpg&amp;diff=5758"/>
		<updated>2008-10-31T14:30:12Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Flotation_m917.jpg&amp;diff=5750</id>
		<title>File:Flotation m917.jpg</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Flotation_m917.jpg&amp;diff=5750"/>
		<updated>2008-10-30T10:05:54Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Flotation_m2.jpg&amp;diff=5745</id>
		<title>File:Flotation m2.jpg</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Flotation_m2.jpg&amp;diff=5745"/>
		<updated>2008-10-30T09:37:39Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Flotation_m.jpg&amp;diff=5743</id>
		<title>File:Flotation m.jpg</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Flotation_m.jpg&amp;diff=5743"/>
		<updated>2008-10-29T14:17:22Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Combthk.jpg&amp;diff=5735</id>
		<title>File:Combthk.jpg</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Combthk.jpg&amp;diff=5735"/>
		<updated>2008-10-29T12:03:19Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Agasea_datasources2.jpg&amp;diff=5734</id>
		<title>File:Agasea datasources2.jpg</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Agasea_datasources2.jpg&amp;diff=5734"/>
		<updated>2008-10-29T12:03:02Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Allthick_sm.jpg&amp;diff=5733</id>
		<title>File:Allthick sm.jpg</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Allthick_sm.jpg&amp;diff=5733"/>
		<updated>2008-10-29T12:02:16Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Allthick_unsm.jpg&amp;diff=5732</id>
		<title>File:Allthick unsm.jpg</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Allthick_unsm.jpg&amp;diff=5732"/>
		<updated>2008-10-29T12:01:56Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Flotation.jpg&amp;diff=5722</id>
		<title>File:Flotation.jpg</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Flotation.jpg&amp;diff=5722"/>
		<updated>2008-10-28T16:08:18Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
	<entry>
		<id>https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Combbed.jpg&amp;diff=5721</id>
		<title>File:Combbed.jpg</title>
		<link rel="alternate" type="text/html" href="https://source.geography.bristol.ac.uk/mediawiki/index.php?title=File:Combbed.jpg&amp;diff=5721"/>
		<updated>2008-10-28T16:07:27Z</updated>

		<summary type="html">&lt;p&gt;Asis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Asis</name></author>
	</entry>
</feed>