<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Grokking GeoStudio</title>
	
	<link>http://www.grokkinggeostudio.com</link>
	<description>Become one with your modeling tool</description>
	<pubDate>Wed, 04 Nov 2009 00:37:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/GrokkingGeostudio" type="application/rss+xml" /><feedburner:emailServiceId>GrokkingGeostudio</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><feedburner:feedFlare href="http://add.my.yahoo.com/rss?url=http%3A%2F%2Ffeeds.feedburner.com%2FGrokkingGeostudio" src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif">Subscribe with My Yahoo!</feedburner:feedFlare><feedburner:feedFlare href="http://fusion.google.com/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2FGrokkingGeostudio" src="http://buttons.googlesyndication.com/fusion/add.gif">Subscribe with Google</feedburner:feedFlare><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Exploring the XML File Format - Part 2</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/g9W-RAtEtS8/</link>
		<comments>http://www.grokkinggeostudio.com/blog/exploring-the-xml-file-format-part-2/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 00:35:35 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Files and Analyses]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=505</guid>
		<description><![CDATA[Last month I gave an overview of the major blocks within GeoStudio&#8217;s xml file format.  Today I&#8217;m going to dig a little deeper into one of those xml blocks.
I&#8217;ll start with the &#60;GeometryItems&#62; section because it&#8217;s something all GeoStudio users should be familiar with.  It will demonstrate some guidelines common to the other blocks as [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">L</span>ast month I gave an <a title="Exploring the XML File Format" href="http://www.grokkinggeostudio.com/blog/exploring-the-xml-file-format/">overview of the major blocks within GeoStudio&#8217;s xml file format</a>.  Today I&#8217;m going to dig a little deeper into one of those xml blocks.</p>
<p>I&#8217;ll start with the &lt;GeometryItems&gt; section because it&#8217;s something all GeoStudio users should be familiar with.  It will demonstrate some guidelines common to the other blocks as well.</p>
<h3>&lt;GeometryItems&gt;</h3>
<p>The &#8220;geometry&#8221; of your problem, as we refer to it, is composed of points, lines and regions.  <span style="background-color: #ffffff; ">But regions and lines are just collections of points, so let&#8217;s look at the &lt;Points&gt; block first.</span></p>
<h3><span style="background-color: #ffffff; ">&lt;Points&gt;</span></h3>
<p><img class="aligncenter size-full wp-image-506" title="geometryitemspoints" src="http://www.grokkinggeostudio.com/wp-content/uploads/2009/11/geometryitemspoints.png" alt="geometryitemspoints" width="266" height="190" /><br />
The &lt;Points&gt; block is a collection of &lt;Point&gt;s.  You&#8217;ll see this type of xml construct often in our files, as much of the data you define involves collections of objects.</p>
<h3>Len=&#8221;8&#8243;</h3>
<p><span style="background-color: #ffffff;">The first thing to notice is the Len=&#8221;8&#8243; in the opening tag, which indicates that there are eight points in this collection.  This is not required in standard xml, but it <em>is</em> required for GeoStudio.  Specifying the size of the list up front allows GeoStudio to read the file more quickly because it knows how much memory to allocate.</span></p>
<h3><span style="background-color: #ffffff;">ID=&#8221;1&#8243;</span></h3>
<p><span style="background-color: #ffffff;">The next thing to point out is that each point has a unique ID.  This ID is what is used elsewhere in the xml to refer to a particular point.  I can&#8217;t remember off-hand if the IDs must start at one and be sequential, but since this file format was intended to be written and read by GeoStudio, not by humans, you&#8217;d be advised to stick to that rule.</span></p>
<h3><span style="background-color: #ffffff;">X=&#8221;0&#8243; Y=&#8221;40&#8243;</span></h3>
<p><span style="background-color: #ffffff;">Now we finally get to the actual definition of the point, which is just an x,y coordinate, in the units you specified in Set Units &amp; Scale (or in the &lt;Coordinates&gt; block of the xml file).</span></p>
<h3><span style="background-color: #ffffff;">&lt;Mesh&gt;</span></h3>
<p><span style="background-color: #ffffff;">You should generally leave this alone.  It indicates the version of the mesh generator that was used to generate a mesh.  If you&#8217;re generating your own file, just leave this out completely.</span></p>
<h3><span style="background-color: #ffffff;">&lt;Plane&gt;</span></h3>
<p><span style="background-color: #ffffff;">I have no clue what this is about!  Anybody else know?!</span></p>
<h3><span style="background-color: #ffffff;">&lt;Lines&gt;</span></h3>
<p><span style="background-color: #ffffff;"><img class="aligncenter size-full wp-image-507" title="geometryitemslines" src="http://www.grokkinggeostudio.com/wp-content/uploads/2009/11/geometryitemslines.png" alt="geometryitemslines" width="241" height="285" /></span></p>
<p><span style="background-color: #ffffff;">You can see that Lines are similar to Points in some ways.  There&#8217;s that Len=&#8221;9&#8243;.  There&#8217;s the ID.  But why does the &lt;Lines&gt; collection contain &lt;Lines&gt; instead of containing &lt;Line&gt;s?  And why are each of the nine &lt;Lines&gt; a block instead of a single element like the &lt;Point&gt;?  Wouldn&#8217;t it be more succinct to say &lt;Line ID=&#8221;1&#8243; PointID1=&#8221;1&#8243; PointID2=&#8221;2&#8243;/&gt;?</span></p>
<p><span style="background-color: #ffffff;">I wish I knew the answer.  Probably an oversight.  But the problem with publishing a file format is that once it&#8217;s out there, it&#8217;s very tough to change without breaking old files, so now that&#8217;s the way it is.</span></p>
<p><span style="background-color: #ffffff;">Both formats are valid xml, but GeoStudio will expect one or the other so always use another gsz file as an example when hand-crafting your own. </span></p>
<p><span style="background-color: #ffffff;">And that&#8217;s the inside scoop you only get on GrokkingGeoStudio.com!</span></p>
<h3><span style="background-color: #ffffff;">&lt;PointID1&gt;, &lt;PointID2&gt;</span></h3>
<p><span style="background-color: #ffffff;">Now we see why it was important for each &lt;Point&gt; to have an ID field.  A line is made up of two points, identified by the point IDs.</span></p>
<p><span style="background-color: #ffffff;">Note that the order of the two points <em>does</em> matter in some situations.  While it&#8217;s not legal to have two lines with the same points just in a different order, still the order is used when you get into things like interface lines, which allow you to assign a material to one side or the other of the line.</span></p>
<h3><span style="background-color: #ffffff;">&lt;Regions&gt;</span></h3>
<p><span style="background-color: #ffffff;"><img class="aligncenter size-medium wp-image-508" title="geometryitemsregions" src="http://www.grokkinggeostudio.com/wp-content/uploads/2009/11/geometryitemsregions-300x266.png" alt="geometryitemsregions" width="300" height="266" /></span></p>
<p><span style="background-color: #ffffff;">Regions, like lines, are a collection of point IDs.  Only in this case there can be any number of points, so they are presented as a comma-separated list.</span></p>
<p><span style="background-color: #ffffff;">A region is always a closed polygon, so it&#8217;s implied that the last point in the list connects back to the first point.</span></p>
<p><span style="background-color: #ffffff;">The order of the point IDs is obviously important for regions, as they define the region edges.</span></p>
<p><span style="background-color: #ffffff;">Interestingly, a region is <em>not</em> a collection of Line IDs.  That used to be the case, but as we&#8217;ve begun adding circular regions and lines that don&#8217;t belong to regions, that has become too restrictive.  As you work with the user interface you can think of a region as being composed of lines, but in the data file that is not the case.</span></p>
<h3><span style="background-color: #ffffff;">Summary</span></h3>
<p><span style="background-color: #ffffff;">So we&#8217;ve seen several common themes:  the Len tag, the ID tag, collections of objects.  We&#8217;ve seen how some things are done differently:  using a single xml element vs using a block.  And we&#8217;ve seen how the ID is used to point to one object from another.</span></p>
<p><span style="background-color: #ffffff;">If I write a Part 3 I&#8217;ll add to those concepts by digging into a more complicated part of the file.  I&#8217;m open to suggestions!</span></p>
<p><span style="background-color: #ffffff;"><br />
</span></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=g9W-RAtEtS8:NqPc6tk5qi8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/g9W-RAtEtS8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/exploring-the-xml-file-format-part-2/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/exploring-the-xml-file-format-part-2/</feedburner:origLink></item>
		<item>
		<title>Exploring the XML File Format</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/iPjI5JjleoQ/</link>
		<comments>http://www.grokkinggeostudio.com/blog/exploring-the-xml-file-format/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 16:08:07 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Files and Analyses]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=490</guid>
		<description><![CDATA[Let&#8217;s take a deeper look into the .gsz file format.  You&#8217;ll remember I&#8217;ve mentioned a few times that a .gsz file is just a zip file that contains a bunch of other files.  One of those inner files is what we call the definition file.  The definition file has a .xml extension and generally has [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">L</span>et&#8217;s take a deeper look into the .gsz file format.  You&#8217;ll remember I&#8217;ve mentioned a few times that <a title="zip-related posts" href="http://www.grokkinggeostudio.com/?s=zip">a .gsz file is just a zip file</a> that contains a bunch of other files.  One of those inner files is what we call the <em>definition file</em>.  The definition file has a .xml extension and generally has the same name as the .gsz.</p>
<p>(If you&#8217;ve solved your analyses you&#8217;ll see several .xml files.  The definition file is the one in the root directory.)</p>
<p class="alert">I&#8217;m assuming you are already somewhat familiar with xml in general.  If that&#8217;s not a fair assumption, you may want to do some additional reading:</p>
<p>• <a title="xml tutorial" href="http://www.tizag.com/xmlTutorial/">XML Tutorial</a> for the very beginner.<br />
• <a title="XML - Wikipedia" href="http://en.wikipedia.org/wiki/Xml">XML definition</a> on wikipedia.</p>
<h3>The XML</h3>
<p>I&#8217;m going to look at the definition file for SLOPE Tutorial.gsz, since it&#8217;s included with every installation of GeoStudio.  You can also <a title="SLOPE Tutorial" href="http://www.geo-slope.com/support/geostudio2007/examples/detail.aspx?id=examples:slopetutorial">download it here</a>.</p>
<p>There&#8217;s a lot of detail in the definition file.  Today I&#8217;ll just look at the bigger blocks.  I may delve into more specific areas in later posts, depending on what feedback I get from you.</p>
<p>Use Notepad or Internet Explorer to open SLOPE Tutorial.xml if you want to follow along.  The first line is:</p>
<blockquote><p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243; standalone=&#8221;yes&#8221;?&gt;</p></blockquote>
<p>That&#8217;s the first line of any xml file, and simply defines it as being xml.</p>
<blockquote><p>&lt;GSIData Version=&#8221;7.15&#8243;&gt;</p></blockquote>
<p>The next line is the opening tag that defines this as a GeoStudio file, the &#8220;GSIData&#8221; block.  (&#8221;GSI&#8221; stands for &#8220;GEO-SLOPE International&#8221;.)  This line also identifies the version of GeoStudio that saved the file.</p>
<p>Now comes the good stuff.  A while back I described how a GeoStudio file has <a title="global vs analysis objects" href="http://www.grokkinggeostudio.com/blog/global-vs-analysis-objects/">&#8220;global&#8221; objects</a> such as regions and materials which are available to every analysis, and how when you assign a material to a region you&#8217;ve just formed a link or &#8220;association&#8221; between those two objects.  Well this next level in the xml file describes all those &#8220;global&#8221; objects.</p>
<blockquote><p>&lt;Analyses Len=&#8221;2&#8243;&gt;&#8230;&lt;/Analyses&gt;</p></blockquote>
<p>The Analyses block describes each analysis.  (From KeyIn - Analyses.)</p>
<p>The Len=&#8221;2&#8243; part just indicates how many analyses there are.  It&#8217;s not strictly necessary in normal xml, but it helps GeoStudio load the file more quickly because it knows in advance how many analyses are in that block.</p>
<blockquote><p>&lt;BCs Len=&#8221;8&#8243;&gt;&#8230;&lt;/BCs&gt;</p></blockquote>
<p>The BCs block describes each boundary condition.  (From KeyIn - Boundary Conditions.)  Note that not every boundary condition in the list is necessarily used by your analyses&#8211;in fact there are a handful of default boundary conditions created in every file because they&#8217;re so common.\</p>
<blockquote><p>&lt;Contexts Len=&#8221;2&#8243;&gt;&#8230;&lt;/Contexts&gt;</p></blockquote>
<p>This is where the associations are recorded.  There&#8217;s a context for each analysis to record which regions and materials are connected, which lines and boundary conditions, and so on.</p>
<blockquote><p>&lt;Contour&gt;&#8230;&lt;/Contour&gt;</p></blockquote>
<p>The Contour block describes how results are visualized.</p>
<blockquote><p>&lt;Coordinates&gt;&#8230;&lt;/Coordinates&gt;</p></blockquote>
<p>Defines the engineering coordinates, page extents and so on.  (From Set - Units &amp; Scale and Set - Page.)</p>
<blockquote><p>&lt;FileInfo &#8230; /&gt;</p></blockquote>
<p>Contains information about the file.  (From KeyIn - Analyses, then click on the root item in the tree.)</p>
<blockquote><p>&lt;Functions&gt;&#8230;&lt;/Functions&gt;</p></blockquote>
<p>The Functions block holds all the functions you&#8217;ve defined.  (From the various KeyIn - Functions.)  They&#8217;re split into several categories such as &lt;Boundary&gt;, which in turn contains categories such as &lt;StressStrain&gt;.</p>
<blockquote><p>&lt;GeometryItems&gt;&#8230;&lt;/GeometryItems&gt;</p></blockquote>
<p>This is your geometry definition.  It contains coordinates for all the points, lines and regions.</p>
<blockquote><p>&lt;Materials Len=&#8221;2&#8243;&gt;&#8230;&lt;/Materials&gt;</p></blockquote>
<p>All materials you&#8217;ve defined.  (KeyIn - Materials.)</p>
<blockquote><p>&lt;MeshItems&gt;&#8230;&lt;/MeshItems&gt;</p></blockquote>
<p>The mesh that was generated from your regions.  Note that when you open a file, the mesh may be regenerated, so don&#8217;t edit this section, your changes may not be used.  If you want to adjust your mesh, you must do it in the GeometryItems section by applying mesh constraints to regions, lines or points.</p>
<blockquote><p>&lt;SketchItems&gt;&#8230;&lt;/SketchItems&gt;</p></blockquote>
<p>Contains sketch lines, circles, text, images and so on.  All the &#8220;markup&#8221; that doesn&#8217;t actually affect results.  (From the Sketch menu.)</p>
<blockquote><p>&lt;SlopeItems Len=&#8221;2&#8243;&gt;&#8230;&lt;/SlopeItems&gt;</p></blockquote>
<p>Each product (SLOPE/W, SEEP/W, etc.) can have its own section with data that&#8217;s specific to that product.  For example, SLOPE/W uses this section to describe slip surfaces, piezometric lines, and so on.  Like the &lt;Contexts&gt; section, there is one &lt;SlopeItem&gt; section per SLOPE/W analysis.</p>
<blockquote><p>&lt;View&gt;&#8230;&lt;/View&gt;</p></blockquote>
<p>Your view preferences, most recent zoom and scroll position, and so on.</p>
<blockquote><p>&lt;/GSIData&gt;</p></blockquote>
<p>And finally we&#8217;re done with the outer GSIData block.</p>
<p>That&#8217;s the GeoStudio xml format at a very high level.  I&#8217;ll dig deeper into specific sections over the next few weeks.  Let me know if there is anything in particular you&#8217;d like covered.</p>
<p><a title="Comments on Sensitivity Analyses" href="http://www.grokkinggeostudio.com/blog/sensitivity-analyses/#comment-29820">Giang</a>, if you&#8217;ve discovered some gems of wisdom as you&#8217;ve been working through this yourself, feel free to share!</p>
<p class="alert">Updated 3 November 2009:  <a title="Exploring the XML File Format - Part 2" href="http://www.grokkinggeostudio.com/blog/exploring-the-xml-file-format-part-2/">Exploring the XML File Format - Part 2</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=iPjI5JjleoQ:qiLwt8a3oNI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/iPjI5JjleoQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/exploring-the-xml-file-format/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/exploring-the-xml-file-format/</feedburner:origLink></item>
		<item>
		<title>Search .gsz files from your desktop</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/DyDrJilcnIk/</link>
		<comments>http://www.grokkinggeostudio.com/blog/search-gsz-files-from-your-desktop/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 16:03:35 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Files and Analyses]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=479</guid>
		<description><![CDATA[I don&#8217;t normally talk about new features before they&#8217;re released, but today is an exception.  Currently in beta (and a free download), version 7.15 of GeoStudio 2007 will now allow Windows to search within .gsz files.
Update 25 September:  version 7.15 has now been released.  The release can be downloaded from here.
(This feature will only be [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">I</span> don&#8217;t normally talk about new features before they&#8217;re released, but today is an exception.  Currently in beta (and a free download), version 7.15 of GeoStudio 2007 will now allow Windows to search within .gsz files.</p>
<p class="alert">Update 25 September:  version 7.15 has now been released.  <a title="Download GeoStudio 2007" href="http://www.geo-slope.com/downloads/2007.aspx">The release can be downloaded from here</a>.</p>
<p>(This feature will only be officially supported on Vista and Windows 7, though there are reports it sort of works on XP and Windows 2000 as well.)</p>
<p>For example, I&#8217;ve got some GeoStudio files in my Documents folder on Windows 7.  Rather than finding the name of the file I want, I can search right from the Start button for some words inside the file.</p>
<p>Here I&#8217;ve searched for &#8220;toe drain&#8221;, and (in amongst a bunch of html files) I&#8217;ve found two GeoStudio files that have &#8220;toe drain&#8221; somewhere inside them.</p>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2009/09/windows-search.png"><img class="size-medium wp-image-480 frame aligncenter" title="Searching for GeoStudio files on Windows 7" src="http://www.grokkinggeostudio.com/wp-content/uploads/2009/09/windows-search-279x300.png" alt="Searching for GeoStudio files on Windows 7" width="279" height="300" /></a></p>
<p>Open one of them up, and we can see &#8220;toe drain&#8221; appeared in several places:  the file&#8217;s comments as well as each analysis&#8217; description.</p>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2009/09/toe-drain-keywords.png"><img class="size-medium wp-image-481 frame aligncenter" title="toe-drain-keywords" src="http://www.grokkinggeostudio.com/wp-content/uploads/2009/09/toe-drain-keywords-300x240.png" alt="Windows Search searches the text inside the .gsz file." width="300" height="240" /></a></p>
<p>In fact, Windows Search will search the<strong> author, file comments, analysis names and descriptions</strong>, and most other objects you can name (such as <strong>materials, boundary conditions</strong>, and so on).</p>
<p>If you are using Vista or Windows 7 already, I encourage you to download the beta and try this feature out.  Leave a comment here or email me with any suggestions or problems you run into.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=DyDrJilcnIk:ieI9oNmYX8s:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/DyDrJilcnIk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/search-gsz-files-from-your-desktop/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/search-gsz-files-from-your-desktop/</feedburner:origLink></item>
		<item>
		<title>Sensitivity Analyses</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/qQF3NGorpKM/</link>
		<comments>http://www.grokkinggeostudio.com/blog/sensitivity-analyses/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 17:44:18 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=468</guid>
		<description><![CDATA[A GeoStudio user commented on an earlier post (&#8221;solving in batch mode&#8221;) asking how to generate thousands of similar analyses that differ only by some input parameters.
Interesting question, and I&#8217;d like to hear more about what it is he&#8217;s trying to accomplish.  But in the meantime here are some thoughts.
Sensitivity
In SLOPE/W, take a look at [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">A</span> GeoStudio user <a title="Jack on &quot;solving in batch mode&quot;" href="http://www.grokkinggeostudio.com/blog/solving-in-batch-mode/#comment-27391">commented on an earlier post</a> (&#8221;solving in batch mode&#8221;) asking how to <em>generate</em> thousands of similar analyses that differ only by some input parameters.</p>
<p>Interesting question, and I&#8217;d like to hear more about what it is he&#8217;s trying to accomplish.  But in the meantime here are some thoughts.</p>
<h3>Sensitivity</h3>
<p>In SLOPE/W, take a look at the Sensitivity analysis (KeyIn Analyses - FOS Distribution - Sensitivity).</p>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2009/06/sensitivity.png"><img class="aligncenter size-full wp-image-469 frame" title="Selecting the Sensitivity analysis option." src="http://www.grokkinggeostudio.com/wp-content/uploads/2009/06/sensitivity-thumb.png" alt="Selecting the Sensitivity analysis option." width="357" height="277" /></a></p>
<p>That will let you specify a range of values for certain properties (such as C, Phi and Unit Weight in the material properties), and will re-run the analysis many times.</p>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2009/06/sensitivity-param.png"><img class="aligncenter size-full wp-image-472 frame" title="Specify a range of values for a parameter." src="http://www.grokkinggeostudio.com/wp-content/uploads/2009/06/sensitivity-param-thumb.png" alt="Specify a range of values for a parameter." width="352" height="115" /></a></p>
<p>In Contour you can then do things such as graphing how the FOS is affected by varying Phi.  (In the menu that&#8217;s Draw - Sensitivity.)</p>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2009/06/sensitivity-graph.png"><img class="aligncenter size-full wp-image-473 frame" title="Graphing factor of safety relative to changing parameter values." src="http://www.grokkinggeostudio.com/wp-content/uploads/2009/06/sensitivity-graph.png" alt="Graphing factor of safety relative to changing parameter values." width="450" height="450" /></a></p>
<h3>Probability</h3>
<p>Similarly you can do a Probabilistic analysis in SLOPE/W, where Solve takes care of varying the parameters in a random way using a distribution function you define.  It then gives you a probability of failure instead of a factor of safety.</p>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2009/06/probability-graph.png"><img class="aligncenter size-full wp-image-474 frame" title="One of the probability graphs." src="http://www.grokkinggeostudio.com/wp-content/uploads/2009/06/probability-graph.png" alt="One of the probability graphs." width="450" height="450" /></a></p>
<p>You can find an example of <a href="http://www.geo-slope.com/support/geostudio2007/examples/detail.aspx?id=examples:probabilisticandsensitivity">sensitivity and probabilistic stability analyses</a> on the geo-slope.com web site.</p>
<h3>Add-Ins</h3>
<p>The other products (Seep, Sigma, etc) do not have sensitivity analyses built in.  (It&#8217;s a feature we&#8217;re considering adding, so email or leave a comment to cast your vote if you would use it.)</p>
<p>I could imagine doing something similar using an Add-In and a batch file.  The batch file could make many copies of the file, giving each a unique name (&#8221;dam-1.gsz&#8221;, &#8220;dam-2.gsz&#8221;, etc), then solving each.  An Add-In function would be used to specify the property you want to vary.  The Add-In would look at the file name (the &#8220;1&#8243; or &#8220;2&#8243; part of it) to return a different value for each run.</p>
<p>Not a particularly elegant solution, but it would do the trick.  Of course you&#8217;d end up with hundreds of files and no simple way to compare results or graph results across the varying parameter as you can do in Slope.</p>
<p>Add-Ins are beyond the scope of what I can go into today, but I have been wanting to delve into them on the blog at some point.  Let me know if that would interest you.</p>
<h3>XML</h3>
<p>An even more adventurous route would be to edit the xml inside a gsz file.  (I mentioned in passing in <a title="A few zip-related posts." href="http://www.grokkinggeostudio.com/?s=zip">a few other posts</a> that a .gsz is just a zip file that contains a bunch of other files&#8211;one of the xml files it contains is what actually defines all the data in your model.)  The advantage would be you could avoid having thousands of <em>files</em> and instead have just a few files each containing a number of <em>analyses</em>.  That lets you share data (so that moving a point in one file wouldn&#8217;t have to be duplicated to all the others), and you may also be able to take advantage of the fact that GeoStudio can graph across analyses.</p>
<p>But editing the xml is not something we officially support, so you&#8217;re on your own if you choose that route.</p>
<p>I&#8217;m curious what it is you&#8217;re doing with your thousands of files.  Can you share some more detail?  Do the tips I mentioned help?  We&#8217;re working full-force on the next version of GeoStudio at the moment, so this is a great time to hear about features that would be important to you.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=qQF3NGorpKM:NrLRG448KIM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/qQF3NGorpKM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/sensitivity-analyses/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/sensitivity-analyses/</feedburner:origLink></item>
		<item>
		<title>Shorter Solve Times with QUAKE/W</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/XojAfTyNyFk/</link>
		<comments>http://www.grokkinggeostudio.com/blog/shorter-solve-times-with-quakew/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 16:55:16 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Engineering]]></category>

		<category><![CDATA[Geometry]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=455</guid>
		<description><![CDATA[Last year while discussing hardware recommendations for getting the most out of GeoStudio 2007, I mentioned that the solvers are multi-threaded, &#8220;meaning [they] will take full advantage of multiple CPUs or cores.&#8221;
But a QUAKE/W user showed me that&#8217;s not true in all cases.  He had a QUAKE/W analysis that was only using one of his [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">L</span>ast year while discussing <a title="hardware recommendations" href="http://www.grokkinggeostudio.com/blog/hardware-recommendations/">hardware recommendations</a> for getting the most out of GeoStudio 2007, I mentioned that the solvers are multi-threaded, &#8220;meaning [they] will take full advantage of multiple CPUs or cores.&#8221;</p>
<p>But a QUAKE/W user showed me that&#8217;s not true in all cases.  He had a QUAKE/W analysis that was only using one of his four cores, and asked me why that was, or what he could do to change it.</p>
<p>That was news to me, and at first I thought it was a bug, but after some digging through the code and discussing with other engineers in the group, I learned a valuable lesson.</p>
<p>It turns out QUAKE/W will take full advantage of multiple CPUs when using the Parallel Direct Solver option but only for Initial Static and Nonlinear Dynamic analyses.  The Equivalent Linear analysis types are not currently formulated in a way that lends itself to parallelization, and thus even if you choose the &#8220;Parallel Direct Equation Solver&#8221; option, they will only use a single core while solving.</p>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2009/06/quake-multithreading.png"><img class="aligncenter size-full wp-image-459 frame" title="QUAKE/W analysis types - only the first and last lend themselves to multi-threading." src="http://www.grokkinggeostudio.com/wp-content/uploads/2009/06/quake-multithreading-thumb.gif" alt="QUAKE/W analysis types - only the first and last lend themselves to multi-threading." width="355" height="89" /></a></p>
<p>We did have some other suggestions, however, for how this customer could greatly speed up solving his analysis.  Some of these may help you as well.</p>
<h3>Shorten the Earthquake Record</h3>
<p>This customer had over 12,000 data points in his earthquake record.  That means over 12,000 finite-element analyses for each iteration. </p>
<p>Much of this is unnecessary.  The first thing to do is to lop off the ends.  Normally in an earthquake record the beginning and end can be lopped off, as the vibrations are small enough as to not affect the final solution. </p>
<p>In this case we suggested getting rid of the first five seconds and the last 25 or so, which I&#8217;ve highlighted here.</p>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2009/06/quake-shorten-record.png"><img class="aligncenter size-full wp-image-461 frame" title="Focus on the important part of the quake by getting rid of the 'noise' at the beginning and end." src="http://www.grokkinggeostudio.com/wp-content/uploads/2009/06/quake-shorten-record.png" alt="Focus on the important part of the quake by getting rid of the 'noise' at the beginning and end." width="498" height="445" /></a></p>
<p>We&#8217;ve just cut down the number of data points to 5000, less than half.  That cuts the solve time less than half too.</p>
<h3>Resample the Earthquake Record</h3>
<p>This record&#8217;s data points are 4/1000 sec apart.  That kind of precision is likely not necessary for a geotechnical analysis. </p>
<p>Use Excel to remove every other data point, then re-scale the record so it still has the same peak accelerations, and you&#8217;ve reduced the number of equations by half again, still likely without affecting your results.</p>
<h3>Understand the Equivalent Linear Method</h3>
<p>Remember what the EL method is all about.  You are looking for only one number for each element and taht is the maximum dynamic shear stress.  This usually occurs at one of the peaks.  All analyses after the peak has been established are irrelevant to the analysis.</p>
<h3>Simplify the Mesh</h3>
<p>Especially in the early stages of an analysis, when you&#8217;re trying to answer some initial questions, use a simple mesh.  For example:</p>
<ul>
<li>if you know all the important activity will be in one area, get rid of mesh detail a long way from that area;</li>
<li>stick to just a few materials and a couple of regions;</li>
<li>try a 1D column to start with.</li>
</ul>
<p>Besides making for shorter solve times, a simpler geometry and simpler mesh also makes it easier to understand and interpret the answers you&#8217;re getting.  You can add complexity later and watch how (or if) it affects what you&#8217;ve understood so far.</p>
<p>Happy meshing!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=XojAfTyNyFk:vUzm1HvCbQY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/XojAfTyNyFk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/shorter-solve-times-with-quakew/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/shorter-solve-times-with-quakew/</feedburner:origLink></item>
		<item>
		<title>Happy New Year</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/63NqFqIqdD0/</link>
		<comments>http://www.grokkinggeostudio.com/blog/happy-new-year/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 16:07:16 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=450</guid>
		<description><![CDATA[Happy New Year to all my readers!
A coworker recently pointed me to Dave&#8217;s landslide blog, by Dave Petley, the Wilson Professor at Durham University in England.  Today&#8217;s article is an interesting look at a slide at a Tennesses power plant a few weeks ago (which amazingly claimed no lives).

]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">H</span>appy New Year to all my readers!</p>
<p>A coworker recently pointed me to <a href="http://daveslandslideblog.blogspot.com">Dave&#8217;s landslide blog</a>, by Dave Petley, the Wilson Professor at Durham University in England.  Today&#8217;s article is an interesting <a href="http://daveslandslideblog.blogspot.com/2009/01/tennessee-flow-slide-accident-what-went.html">look at a slide at a Tennesses power plant</a> a few weeks ago (which amazingly claimed no lives).</p>
<p style="text-align: center;"><a href="http://www.knoxnews.com/photos/galleries/2008/dec/22/images-tva-pond-breach/"><img class="aligncenter frame" title="Image from Knoxnews" src="http://media.knoxnews.com/kns/content/img/photos/2008/12/22/122208pond37_t600.jpg" alt="" width="480" height="294" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=63NqFqIqdD0:V5XgTVlBQ28:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/63NqFqIqdD0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/happy-new-year/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/happy-new-year/</feedburner:origLink></item>
		<item>
		<title>Snap To Grid</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/9KfZN2SDfjU/</link>
		<comments>http://www.grokkinggeostudio.com/blog/snap-to-grid/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 18:22:48 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Geometry]]></category>

		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=435</guid>
		<description><![CDATA[We generally recommend you always keep the &#8220;Snap to Grid&#8221; option on.  In fact in recent versions we&#8217;ve defaulted it to on for new files.  
The reason is that otherwise lines that appear to be vertical may in fact be slightly off. Many times that&#8217;s fine, but in SLOPE/W in particular nearly-vertical lines can cause a host [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">W</span>e generally recommend you <em>always</em> keep the &#8220;Snap to Grid&#8221; option on.  In fact in recent versions we&#8217;ve defaulted it to on for new files.  </p>
<p>The reason is that otherwise lines that <em>appear</em> to be vertical may in fact be slightly off. Many times that&#8217;s fine, but in SLOPE/W in particular nearly-vertical lines can cause a host of problems, and often be hard to detect.</p>
<p>So turn your grid on, and use these tips to draw foolproof geometry.</p>
<h3>Grid Settings</h3>
<p>Use the Grid Toolbar to make changes to your grid, or the<strong> Set - Grid</strong> menu item.</p>
<p><img class="aligncenter size-full wp-image-436 frame" title="Use the Grid Toolbar for adjusting your grid as you work." src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/12/grid-toolbar.png" alt="Use the Grid Toolbar for adjusting your grid as you work." width="219" height="28" /></p>
<p>The button on the left turns the grid (and grid snapping) on or off.  </p>
<p>The two edit boxes adjust the grid spacing.  (You only need to adjust one of them&#8211;the other gets calculated automatically.)</p>
<h3>Finer Detail</h3>
<p>Adjust the grid spacing often as you work.  If you need to add details in between the grid points, don&#8217;t turn the grid off, just work with a finer grid.  When you&#8217;re done with detail area, you can make the grid coarser again.</p>
<h3>Alt to Override the Grid</h3>
<p>There are some times where you really need to work without the grid, or where you&#8217;re adjusting it so many times that you&#8217;d rather just turn it off.</p>
<p>Consider instead holding down the Alt key while you&#8217;re clicking.  The Alt key will temporarily override the grid, letting you click wherever you want.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=9KfZN2SDfjU:XDC_jhJHeXc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/9KfZN2SDfjU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/snap-to-grid/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/snap-to-grid/</feedburner:origLink></item>
		<item>
		<title>Create a Database of Common Functions</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/q_Gp1t6ZrJI/</link>
		<comments>http://www.grokkinggeostudio.com/blog/create-a-database-of-common-functions/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 22:19:32 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Functions]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=427</guid>
		<description><![CDATA[As you use GeoStudio, you quickly find yourself creating the same functions over and over.  As you type in a water content function for your standard local clay for the hundredth time, and especially if you&#8217;re lazy like I am, you think &#8220;there&#8217;s got to be better way!&#8221;
There are, in fact, three ways I can suggest.
Importing [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">A</span>s you use GeoStudio, you quickly find yourself creating the same functions over and over.  As you type in a water content function for your standard local clay for the hundredth time, and especially if you&#8217;re lazy like I am, you think &#8220;there&#8217;s <em>got</em> to be better way!&#8221;</p>
<p>There are, in fact, three ways I can suggest.</p>
<h3>Importing Functions</h3>
<p>Functions can be imported from any other .gsz file.</p>
<p> </p>
<ol>
<li> From the KeyIn Functions box, click the arrow next to &#8220;Add&#8221; and choose &#8220;Import&#8230;&#8221;<br />
<img class="aligncenter size-full wp-image-428 frame" title="Import a function from another .gsz file" src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/12/keyin-functions-import.png" alt="" width="366" height="139" /></li>
<li>Select the .gsz file that contains the function.</li>
<li>You&#8217;ll be presented with a list of functions in that file that are of the same type as those you&#8217;re currently editing.  <br />
<img class="aligncenter size-full wp-image-429 frame" title="Select which functions to import" src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/12/keyin-functions-import-select.png" alt="" width="419" height="273" /></li>
<li>You can select one or more and click Import, and they magically appear in your list of functions.<br />
<img class="aligncenter size-full wp-image-430 frame" title="Newly imported functions" src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/12/keyin-functions-imported.png" alt="" width="367" height="175" /></li>
</ol>
<p> </p>
<h3>Function Library</h3>
<p>You may want to import a function from another analysis you were just working on recently.  But the next level of organization is to create a .gsz file whose only purpose is to store common functions.</p>
<p>Save a &#8220;Function Library.gsz&#8221; on a shared drive on the network and all your engineers can have access to the same standard functions.</p>
<h3>Spreadsheet</h3>
<p>An alternative to importing a function from another .gsz is to import it from a spreadsheet.  </p>
<p>In this case you aren&#8217;t really <em>importing</em> it, you just use the clipboard to copy the data points and paste them into the KeyIn Functions list.  (I discussed this last year in <a title="editing functions" href="http://www.grokkinggeostudio.com/blog/editing-functions/">editing functions</a>.)</p>
<p><img class="aligncenter size-full wp-image-431 frame" title="Paste function data points from Excel" src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/12/keyin-functions-paste.png" alt="" width="452" height="352" /></p>
<p>I don&#8217;t suggest keeping a shared database of functions in a spreadsheet, because the spreadsheet only holds the data points, not the function type (spline vs step etc) or additional values like the spline curve or segment weight.  </p>
<p>But if you have a function from some other source, or you&#8217;ve written an algorithm in Excel to generate your unique function, this can be a good way to get it into GeoStudio.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=q_Gp1t6ZrJI:OMNJ_2HBziY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/q_Gp1t6ZrJI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/create-a-database-of-common-functions/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/create-a-database-of-common-functions/</feedburner:origLink></item>
		<item>
		<title>Meshing Efficiently</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/Hgdpi_TCwZc/</link>
		<comments>http://www.grokkinggeostudio.com/blog/meshing-efficiently/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 18:04:14 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Geometry]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=410</guid>
		<description><![CDATA[GeoStudio 2007 tries to let you focus on the definition of the geometry, boundary conditions and material properties, without being distracted by the mesh. If you want, you can define your model, solve it, and view the results without once looking at the mesh.
But the reality is if you&#8217;re doing a finite-element analysis, the mesh [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">G</span>eoStudio 2007 tries to let you focus on the definition of the geometry, boundary conditions and material properties, without being distracted by the mesh. If you want, you can define your model, solve it, and view the results without once looking at the mesh.</p>
<p>But the reality is if you&#8217;re doing a finite-element analysis, the mesh can&#8217;t be ignored forever.</p>
<h3>Start Simple</h3>
<p>We always encourage you to start your model simply, and add complexity.  The same can be said for meshing.  Start with the default mesh, look at your results, and then decide if you need to use a finer mesh in certain areas (or everywhere).</p>
<h3>Set the Global Element Size</h3>
<p>If you want a finer mesh, the place to start is to use Draw Mesh Properties to change the &#8220;Approx. Global Element Size&#8221;.  This will change the entire mesh.</p>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/draw-mesh-properties-full.png"><img class="aligncenter size-full wp-image-412 frame" title="Using Draw Mesh Properties to set the global element size." src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/draw-mesh-properties.png" alt="" width="414" height="86" /></a></p>
<p>You&#8217;re setting the preferred length of each element edge.  So a smaller number will make for a finer mesh, and a larger number gives a coarser mesh.</p>
<p>Remember this size is &#8220;approximate&#8221;.  The mesher will do the best it can to stay close to the size you specified, but it won&#8217;t be exact.</p>
<h3>Constrain the Mesh</h3>
<p>Often you&#8217;ll find there are certain areas of your geometry that have more &#8220;activity&#8221;.  These areas may benefit by having a finer mesh.  You&#8217;ll get more exacting results at the expense of a longer solve time.</p>
<p>To get a finer (or coarser) mesh in specific areas, you select a region, line or point in that area, and change the Element Edge Length for the object you selected.  (You can also multi-select to adjust several objects simultaneously.) </p>
<p>This is called &#8220;constraining the mesh&#8221;, because you&#8217;re giving the mesher specific instructions about this part of the mesh.</p>
<p>When adding a constraint, you are again specifying the preferred (or approximate) length of every element edge in this area.  But there are several ways to specify it:</p>
<ol>
<li>Using a ratio of the global length.</li>
<li>Specifying the approximate length.</li>
<li>Specifying the exact number of divisions (this option is only avialable on lines).</li>
</ol>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/edge-length-full.png"><img class="aligncenter size-full wp-image-415 frame" title="Constraining the mesh in certain areas." src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/edge-length.png" alt="" width="371" height="84" /></a></p>
<p>Normally #1 is the better approach, just defining it as a ratio, like &#8220;0.5&#8243; to make the mesh in this area half the size as the rest of the mesh.  That way you can later adjust the Global Element Size to make the entire mesh finer, and this area becomes finer yet.</p>
<h3>Here&#8217;s an Example</h3>
<p>Draw a simple geometry.  Choose Draw Mesh Properties to look at the mesh.</p>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/default-mesh.png"><img class="aligncenter size-full wp-image-417 frame" title="The default mesh (click for the whole picture)" src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/default-mesh-detail.png" alt="" width="101" height="103" /></a></p>
<p>Make a finer mesh everywhere by adjusting the global element size.</p>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/finer-mesh.png"><img class="aligncenter size-full wp-image-419 frame" title="Uniformly finer mesh (click for the full picture)" src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/finer-mesh-detail.png" alt="" width="101" height="103" /></a></p>
<p>Make the left side finer still, using a ratio.</p>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/left-constraint.png"><img class="aligncenter size-full wp-image-421 frame" title="Added a constraint on the left (click for the full picture)" src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/left-constraint-detail.png" alt="" width="101" height="103" /></a></p>
<p>Make the entire mesh finer by adjusting the global element size again.  Notice that elements along the left side are still half the size of the rest of the mesh.</p>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/finest-mesh.png"><img class="aligncenter size-full wp-image-423 frame" title="When the global mesh is made more fine, the constrained edge gets a finer mesh yet (click for the full picture)" src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/finest-mesh-detail.png" alt="" width="101" height="103" /></a></p>
<h3>Conclusions</h3>
<p>Meshing is half science and half black art.  Making a finer mesh does NOT always give you a better result.  Discussing the ins and outs of how to mesh properly is beyond the scope of this article.  Read the engineering books that came with your software for a better treatment of this subject.</p>
<p>But adjusting and fine-tuning the mesh in GeoStudio 2007&#8211;or ignoring it completely&#8211;is easier than it has been in any previous version.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=Hgdpi_TCwZc:iighxXv3vOM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/Hgdpi_TCwZc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/meshing-efficiently/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/meshing-efficiently/</feedburner:origLink></item>
		<item>
		<title>Copying and Pasting Regions</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/fUwOmY4MC3o/</link>
		<comments>http://www.grokkinggeostudio.com/blog/copying-and-pasting-regions/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 23:50:47 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Geometry]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=405</guid>
		<description><![CDATA[While you can&#8217;t copy regions from one .gsz file to another, you can do better than just re-creating them all by hand.
To start out, run two copies of GeoStudio side-by-side, one with the source file and one with the destination file.
Copy the Points
Choose the KeyIn Points command in both GeoStudio windows.

In the source file, select [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">W</span>hile you can&#8217;t copy regions from one .gsz file to another, you <em>can</em> do better than just re-creating them all by hand.</p>
<p>To start out, run two copies of GeoStudio side-by-side, one with the <em>source file</em> and one with the <em>destination file</em>.</p>
<h3>Copy the Points</h3>
<p>Choose the KeyIn Points command in both GeoStudio windows.</p>
<ol>
<li>In the <em>source file</em>, select every point in the list;</li>
<li>copy them to the clipboard.</li>
<li>In the <em>destination file</em>, paste the points into the list.</li>
</ol>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/copy-points.png"><img class="aligncenter size-medium wp-image-399 frame" title="Copying points from one model to another." src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/copy-points-300x88.png" alt="" width="300" height="88" /></a></p>
<p>When pasting the points, you may get this error:</p>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/copy-points-error.png"><img class="aligncenter size-full wp-image-400 frame" title="Found 1 errors while pasting data; Line 1: Invalid characters in string \'X\' when converting to a floating point number." src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/copy-points-error.png" alt="" width="464" height="126" /></a></p>
<p>You can safely hit OK and forget about it. The problem is just that when you copied the points to the clipboard, you included the last one in the list, which is just a placeholder and has &#8220;&#8212;&#8221; as the X and Y values. When you try to paste those values GeoStudio complains that they aren&#8217;t numbers. You can avoid the error in the future by selecting all but the last point.</p>
<p>Both files now have the same points. All that&#8217;s left is to hook them up together into regions.</p>
<h3>Copy the Regions</h3>
<p>Unfortunately you can&#8217;t copy and paste the entire list of regions like we did with points. Instead you have to do them one region at a time.</p>
<p>For each region in the source list:</p>
<ol>
<li>Select the region;</li>
<li>Select and Copy the &#8220;Region Points&#8221; text;</li>
<li>In the destination, click the Add button;</li>
<li>Paste the points into the Region Points control.</li>
</ol>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/copy-regions.png"><img class="aligncenter size-medium wp-image-401 frame" title="Copy regions after you\'ve copied their points." src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/11/copy-regions-300x96.png" alt="" width="300" height="96" /></a></p>
<p>For simple regions you may find it easier to just redraw them. At least all the points exist already at the same coordinates. But for complex region this tip will save you some time and avoid errors.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=fUwOmY4MC3o:g7HsFF_oqP0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/fUwOmY4MC3o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/copying-and-pasting-regions/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/copying-and-pasting-regions/</feedburner:origLink></item>
		<item>
		<title>Ordering Analyses</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/NHhSnANU030/</link>
		<comments>http://www.grokkinggeostudio.com/blog/ordering-analyses/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 14:12:52 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Files and Analyses]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=387</guid>
		<description><![CDATA[Here is a quick tip to put you on friendly terms with KeyIn Analyses:
When you create analyses in KeyIn Analyses, they are always listed in alphabetical order. If you really want them to be displayed in a different order, just put a number at the beginning of each analysis name, and they&#8217;ll get sorted by [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">H</span>ere is a quick tip to put you on friendly terms with <a title="Category Archives:  KeyIn Analyses" href="http://www.grokkinggeostudio.com/blog/category/analyses/">KeyIn Analyses</a>:</p>
<p class="note">When you create analyses in KeyIn Analyses, they are always listed in alphabetical order. If you really want them to be displayed in a different order, just put a number at the beginning of each analysis name, and they&#8217;ll get sorted by that number.</p>
<p>Take this case, for example. We develop three analyses as an experiment, with increasing complexity:</p>
<ul>
<li>Dry Frictional Material with No Cohesion</li>
<li>Wet Frictional Material with No Cohesion</li>
<li>Wet Frictional Material with Cohesion</li>
</ul>
<p>But GeoStudio displays them in alphabetical order, resulting in this:</p>
<p><img class="aligncenter size-full wp-image-390 frame" title="Analyses are ordered alphabetically." src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/10/ordering-analyses-before.png" alt="" width="280" height="159" /></p>
<p>To get the analyses displayed in a more logical order, simply rename them, like this:</p>
<p><img class="aligncenter size-full wp-image-389 frame" title="Now the alphabetical ordering works for us because we've added numbers." src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/10/ordering-analyses-after.png" alt="" width="280" height="159" /></p>
<p>P.S. Our own <a title="Example Files for GeoStudio 2007" href="http://www.grokkinggeostudio.com/blog/search-examples-on-the-web/">examples online</a> do this all the time, but are not really good examples to follow IMO. Our engineers tend to go crazy and use numbering even when it isn&#8217;t necessary. </p>
<p>In my experience, <em>most</em> of the time the default alphabetical and parent/child ordering is fine.</p>
<p>While there&#8217;s nothing wrong with something like the following example, the numbering is unnecessary, because the parent-analysis / child-analysis structure will keep the analyses in sequential order anyway:</p>
<p><img class="aligncenter size-full wp-image-388 frame" title="These analyses are numbered, but they would display in this order even if the numbers were skipped." src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/10/ordering-analyses-overkill.png" alt="" width="327" height="208" /></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=NHhSnANU030:iN1nVRx6Qv8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/NHhSnANU030" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/ordering-analyses/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/ordering-analyses/</feedburner:origLink></item>
		<item>
		<title>Long Analysis Names</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/NxoulyeeQ1k/</link>
		<comments>http://www.grokkinggeostudio.com/blog/long-analysis-names/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 15:28:51 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Files and Analyses]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=382</guid>
		<description><![CDATA[Mike recently emailed me from Australia trying to understand why a long analysis name would cause a &#8220;Path too long&#8221; error when running Verify.

Background - Path Length
Windows imposes a maximum number of characters allowed for any path, including the drive letter, the directories, and the file name.  In XP I believe the limit is [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">M</span>ike recently emailed me from Australia trying to understand why a long analysis name would cause a &#8220;Path too long&#8221; error when running Verify.</p>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2008/10/verify-path-too-long-2.png"><img class="aligncenter size-full wp-image-373 frame" title="Verify sometimes reports an error about the file path being too long" src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/10/verify-path-too-long-thumb-2.png" alt="" width="238" height="197" /></a></p>
<h3>Background - Path Length</h3>
<p>Windows imposes a maximum number of characters allowed for any path, including the drive letter, the directories, and the file name.  In XP I believe the limit is 260 characters.</p>
<p>In this example (and in Mike&#8217;s case) his file name <em>was</em> within the 260 character limit that Windows imposes on paths.</p>
<p>The problem is a bit hidden, and has to do with how GeoStudio handles .gsz files.</p>
<h3>A Gsz is a Zip File</h3>
<p>I&#8217;ve mentioned before that <a title="emailing large files" href="http://www.grokkinggeostudio.com/blog/emailing-large-files/">a .gsz file is really just a Zip file</a> that can be opened with WinZip or any other Zip reader.</p>
<p>When GeoStudio opens a .gsz file, it unzips any internal files it needs into your TEMP directory.  In Windows 2000, Windows 98, and older versions, the TEMP directory is normally C:\TEMP.  But in XP (and Vista) each user on a computer gets their own TEMP directory for privacy reasons, so the path is something like:</p>
<p class="note">C:\Documents and Settings\YourUsername\Local Settings\Temp\</p>
<p>That&#8217;s a pretty long path to start out with.  Maybe you can see where this is headed.</p>
<p>After that TEMP path, GeoStudio adds a unique folder name that is derived from the name of the .gsz, so now we&#8217;re up to something like:</p>
<p class="note">C:\Documents and Settings\YourUsername\Local Settings\Temp\<strong style="color:red">gs_Your Gsz File Name_89284fa64a8df8a7cf04a40a75c2b96c\</strong></p>
<p>That&#8217;s the root folder the .gsz gets unzipped into.  Nasty.  But that&#8217;s not all, oh no, that is not all!</p>
<p>Inside that folder you get another folder named after each analysis.  Now we&#8217;re at:</p>
<p class="note">C:\Documents and Settings\YourUsername\Local Settings\Temp\gs_Your Gsz File Name_89284fa64a8df8a7cf04a40a75c2b96c\<strong style="color:red">Your Descriptive Analysis Name\</strong></p>
<p>Inside that analysis folder you get one folder for each time step:</p>
<p class="note">C:\Documents and Settings\YourUsername\Local Settings\Temp\gs_Your Gsz File Name_89284fa64a8df8a7cf04a40a75c2b96c\Your Descriptive Analysis Name\<strong style="color:red">001\</strong></p>
<p>And for the <em>coup de grâce</em>, in SLOPE/W we then fnish the path off with the name of the analysis again (in the flow products we use shorter names like &#8220;nodes.csv&#8221;):</p>
<p class="note">C:\Documents and Settings\YourUsername\Local Settings\Temp\gs_Your Gsz File Name_89284fa64a8df8a7cf04a40a75c2b96c\Your Descriptive Analysis Name\001\<strong style="color:red">Your Descriptive Analysis Name.frc01</strong></p>
<p>You can see that even if you keep your filename and analysis names below the 260 character limit, you may still end up going over the limit inadvertantly.  With SLOPE/W especially, keeping your analysis names shorter makes a big difference since they are used twice.</p>
<h3>Verify</h3>
<p>The good news is that in the latest versions, Verify catches the problem.  In earlier versions it wasn&#8217;t so friendly.  I don&#8217;t remember if it would crash, give strange results, or if the solver would just give an unhelpful error message.</p>
<p>If you get the &#8220;Path too long&#8221; error in Verify, just shorten your analysis name and/or the name of your .gsz file.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=NxoulyeeQ1k:1WSE-oN3gFk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/NxoulyeeQ1k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/long-analysis-names/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/long-analysis-names/</feedburner:origLink></item>
		<item>
		<title>When to Use GeoStudio Betas</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/K445JZ7-8JY/</link>
		<comments>http://www.grokkinggeostudio.com/blog/when-to-use-geostudio-betas/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 21:50:03 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Software Updates]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=364</guid>
		<description><![CDATA[Wow, I have not been very good at updating this blog this fall!  Work has been very busy here lately and I just haven&#8217;t been able to find the time to write.
Betas
Two weeks ago I talked about how we let people know about updates to GeoStudio being released, and why there&#8217;s usually a delay between [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop_cap">W</span>ow, I have not been very good at updating this blog this fall!  Work has been very busy here lately and I just haven&#8217;t been able to find the time to write.</p>
<h3>Betas</h3>
<p>Two weeks ago I talked about how we let people know about <a title="Automatic Updates" href="http://www.grokkinggeostudio.com/blog/automatic-updates/">updates to GeoStudio</a> being released, and why there&#8217;s usually a delay between a release and when GeoStudio&#8217;s <a title="New Start Page" href="http://www.grokkinggeostudio.com/blog/new-start-page/">Start Page</a> tells you about it.  I ended the article by mentioning that we now post betas weeks or even months before a release.</p>
<p>You can always find the latest beta on the <a title="Download Beta Software - GEO-SLOPE International Ltd." href="http://www.geo-slope.com/downloads/beta.aspx">Beta Downloads</a> page.</p>
<p>Betas have turned out to be a great way to get small changes out quickly.  Normally when we become aware of an important bug, we can fix it the same day or at least within the week.  But we don&#8217;t want to post a new release every week&#8211;you&#8217;d probably be annoyed having to download a 70 MB file that often!</p>
<p>Instead we post a new beta, and email the person who reported the bug.  Anyone else over the next weeks who reports the same bug can be pointed to the beta as well and be quickly up and running again.</p>
<h3>It is beta software though!</h3>
<p class="alert">A word of caution:  a beta has not been fully tested, and <em>could</em> contain new bugs worse than what we fixed.</p>
<p>As a result, we don&#8217;t recommend everyone run the beta.  But if you encounter a bug with no easy workaround that has been fixed in the beta, using the beta can be better than waiting for the next release.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=K445JZ7-8JY:3npLoDVIWF8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/K445JZ7-8JY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/when-to-use-geostudio-betas/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/when-to-use-geostudio-betas/</feedburner:origLink></item>
		<item>
		<title>Automatic Updates</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/7l97f6JIE0U/</link>
		<comments>http://www.grokkinggeostudio.com/blog/automatic-updates/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 15:37:51 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Software Updates]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=359</guid>
		<description><![CDATA[With version 7.13 just released last week, I&#8217;d like to describe how the automatic update notification works.
The Simple Story
The theory is simple.  Every time you run GeoStudio, it checks our web site to see if there&#8217;s a newer release.  If it finds one, it displays a message on the Start Page.
If you have version 7.10 [...]]]></description>
			<content:encoded><![CDATA[<p>With <a title="Download GeoStudio 2007" href="http://www.geo-slope.com/downloads/2007.aspx">version 7.13</a> just released last week, I&#8217;d like to describe how the automatic update notification works.</p>
<h3>The Simple Story</h3>
<p>The theory is simple.  Every time you run GeoStudio, it checks our web site to see if there&#8217;s a newer release.  If it finds one, it displays a message on the Start Page.</p>
<p>If you have version 7.10 or higher you get a message like this:</p>
<p><img class="aligncenter size-full wp-image-361 frame" title="Version 7.10 showing that an update is available." src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/09/autoupdate-710.png" alt="" width="380" height="42" /></p>
<p>If you have an older version you get something like this instead:</p>
<p><img class="aligncenter size-full wp-image-360 frame" title="Version 7.00 showing that an update is available." src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/09/autoupdate-700.png" alt="" width="290" height="132" /></p>
<p>In either case, simply click the link and you&#8217;ll get taken to a page where you can download the new version. Download it, run it, and it updates your current installation to the latest.</p>
<h3>Exceptions to the Rule</h3>
<p>7.13 was released last Wednesday.  But some of you are likely thinking, &#8220;hey, I ran GeoStudio last Friday and it didn&#8217;t say anything about a new version!&#8221;</p>
<p>In fact the very astute among you may even have noticed that you&#8217;ve been running version 7.11 for the last four months without getting any update notification, even though version 7.12 has been available on our web site since July.</p>
<p>What&#8217;s going on here?!</p>
<p>What&#8217;s going on is that we intentionally delay alerting people through the Start Page.  And in a few exceptional cases we may choose never to publish the alert at all.</p>
<h3>The Overseas Bug</h3>
<p>We almost always wait about a week from when a new version is released before publishing the notification that GeoStudio displays.  I think that practice dates back to version 6.18&#8211;did any of you experience 6.18?</p>
<p>We do some pretty rigorous testing in-house before every release, but we had some very embarassing days in March 2006 when we released version 6.18: we introduced a bug in 6.18 that only happened to people in Europe.  It passed all our tests, but within hours after we released it (and in those days we published the update notice immediately) our phone started ringing off the hook from irate Europeans.  And rightly so!  GeoStudio would corrupt any data file saved on a system where the comma was used as the decimal character.  Once you saved, you could never open the file again.</p>
<p>We found and fixed the problem quickly and posted a new update (and we could manually fix any corrupted files customers emailed us), but those were not happy days in our office.</p>
<h3>Real-Life Testing</h3>
<p>We do two things differently now:</p>
<ol>
<li><a title="Download Beta Software" href="http://www.geo-slope.com/downloads/beta.aspx">We post betas</a> before publishing a new release.  A handful of people from all over the world use the betas on real-life problems, so there&#8217;s more chance to find unusual bugs that our normal testing doesn&#8217;t reveal.</li>
<li>We trickle out new releases.  We don&#8217;t want everyone to download a new release the moment it&#8217;s out.  We let a few people download it, a few others get it on CD, and if we don&#8217;t hear any negative feedback within the first few days, <em>then</em> we&#8217;ll let the rest of our users know.</li>
</ol>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=7l97f6JIE0U:_IypfCmOmZQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/7l97f6JIE0U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/automatic-updates/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/automatic-updates/</feedburner:origLink></item>
		<item>
		<title>Banff Workshop</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/EEbMGdEo1Cg/</link>
		<comments>http://www.grokkinggeostudio.com/blog/banff-workshop/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 15:31:23 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=351</guid>
		<description><![CDATA[We just wrapped up our Banff workshop, with about the best weather imaginable for a mountain autumn. Chilly mornings but gorgeous sun and highs in the 20s (Celsius) all week.  
It was great to see some of you there.  Believe it or not, I always learn a tonne from talking with you and watching how you [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2008/09/2008-banff-workshop-37.jpg"><img class="alignright size-medium wp-image-353 frame" title="What a beautiful location for a workshop!" src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/09/2008-banff-workshop-37-300x225.jpg" alt="" width="300" height="225" /></a><span class="drop_cap">W</span>e just wrapped up our <a href="http://www.geo-slope.com/training/calgaryworkshop.aspx">Banff workshop</a>, with about the best weather imaginable for a mountain autumn. Chilly mornings but gorgeous sun and highs in the 20s (Celsius) all week.  </p>
<p>It was great to see some of you there.  Believe it or not, I always learn a tonne from talking with you and watching how you work.  I walk away from workshops feeling invigorated and excited about the potential the future holds.</p>
<p>There are often some embarrassing moments.  Like when View Slice Information crashed within the first hour or two of the workshop, on the presenter&#8217;s computer as well as many of the attendees&#8217;.  We&#8217;ve been fighting that crash for months and thought we had it licked, but apparently not.  </p>
<p>There&#8217;s a happy ending to that story, however.  As a result of watching it happen to a whole roomful of people, by the end of the next day I was able to find the bad line of code and finally fix it.  I think for real this time!  The next release (7.13&#8211;<a href="http://www.geo-slope.com/downloads/2007.aspx">which we just released yesterday</a>) includes this fix as well as a host of other improvements.</p>
<p><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2008/09/2008-banff-workshop-19.jpg"><img class="size-medium wp-image-354 alignleft frame" title="A more casual venue for the optional fourth day." src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/09/2008-banff-workshop-19-300x225.jpg" alt="" width="300" height="225" /></a>This was our first time to offer an optional fourth day.  The dynamics of that last day were much different than the first three.  The smaller group and more casual sessions allowed us to have more informal discussions and get to know each others&#8217; backgrounds a bit more.</p>
<p>I&#8217;m definitely looking forward to next year&#8217;s workshop.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=EEbMGdEo1Cg:owb6BmkG4n0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/EEbMGdEo1Cg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/banff-workshop/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/banff-workshop/</feedburner:origLink></item>
		<item>
		<title>Blogiversary</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/DeT-B5pvS0s/</link>
		<comments>http://www.grokkinggeostudio.com/blog/blogiversary/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 15:51:56 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<category><![CDATA[Pret]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=339</guid>
		<description><![CDATA[Grokking GeoStudio was launched a year ago today.  I&#8217;d like to take a few moments to reminisce about the past year, and think ahead toward the coming one.
Last Year
This whole blogging thing was an experiment from the beginning.  I had a couple of goals:

Provide help for GeoStudio users to learn how to use the software, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-346 frame" title="One year of blogging!" src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/09/one-year.png" alt="" width="209" height="211" /><span class="drop_cap">G</span>rokking GeoStudio was launched <a title="introductions" href="http://www.grokkinggeostudio.com/blog/introductions/">a year ago today</a>.  I&#8217;d like to take a few moments to reminisce about the past year, and think ahead toward the coming one.</p>
<h3>Last Year</h3>
<p>This whole blogging thing was an experiment from the beginning.  I had a couple of goals:</p>
<ol>
<li>Provide help for GeoStudio users to learn how to use the software, with a different focus than the manuals and online help.</li>
<li>Get a better feel personally for how our software is being used &#8220;in the real world&#8221; through feedback from readers.</li>
<li>Be a friendly personal face to GEO-SLOPE.</li>
</ol>
<p>I tried to blog weekly, and although I wasn&#8217;t that regular, I did (coincidentally?!) end up writing <strong>52 posts</strong> over the year!</p>
<p>Did I meet my goals?</p>
<ol>
<li>Much of what I wrote about is not discussed in the online help or the engineering books, or is mentioned but is hard to find.  With the recent changes to the blog categories and layout, I hope that those 52 gems will be easier for newcomers to find, so the blog can be used as a bit of a reference tool.</li>
<li>I receive several emails or comments a month, and from those I do get a small feel for how the software is being used.  A big thank you to everyone who felt the freedom to write!  This is an area I&#8217;d like to improve on next year&#8211;I would love to see more feedback, especially comments left on the blog, and even to have readers responding to other reader&#8217;s comments.</li>
<li>I&#8217;ll leave #3 to you to decide!</li>
</ol>
<p>Some interesting statistics (at least to me!):</p>
<ul>
<li><strong>52 posts;</strong></li>
<li><strong>12 comments </strong>from readers, and a similar number of emails (all of which I respond to);</li>
<li>Around <strong>48 regular readers</strong>, and growing slowy, 37 of whom subscribe by email, the rest using RSS readers;  The biggest jumps in subscribers come when the blog gets mentioned in a Direct Contact newsletter, especially when it&#8217;s the main article.</li>
<li>The web site has been visited from <strong>90 countries</strong>, but only gets about <strong>ten visits a day</strong>.</li>
</ul>
<p>The most popular articles were:</p>
<ol>
<li><a title="global vs analysis objects" href="http://www.grokkinggeostudio.com/blog/global-vs-analysis-objects/">Global vs Analysis Objects</a></li>
<li><a title="prettying up graphs" href="http://www.grokkinggeostudio.com/blog/prettying-up-graphs/">Prettying Up Graphs</a></li>
</ol>
<h3>Next Year</h3>
<p>Before starting to blog I wrote up a list of topics I wanted to write on, just to make sure there was enough to keep me going.  I&#8217;m mostly through that list now, but from the comments, from tech support we do, and from discussions at the Banff Workshop that just finished, I feel I have plenty more to keep this blog going another year.</p>
<p>To spice things up a bit, though, I&#8217;d like to have more <strong>guest bloggers</strong> this year.  It would be nice to hear some tricks from people who <em>use</em> the software regularly.  Do any of you have something you&#8217;d be willing to share on this blog?  Email me privately (hekman at geo-slope dot com) to discuss.</p>
<p>I&#8217;d also like to stretch my limits a bit and write about a few more <strong>engineering-related topics</strong>, like the Multi-Stage Rapid Drawdown article.  Those are harder for me to write, I normally have to sit down for a lesson with one of our engineers, but they are useful things for me to know and they are obviously topics you are wanting addressed.  If you have topic suggestions, please let me know by leaving a comment.</p>
<p>But mostly I intend this year to focus where my strengths lie, which is the user interface.  I&#8217;m going to take a look at DXF issues, dig deeper into functions and graphs, take a stab at plug-ins, and as much as possible help you to get past the software and focus on your modeling.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=DeT-B5pvS0s:XOk_jpoFsmE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/DeT-B5pvS0s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/blogiversary/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/blogiversary/</feedburner:origLink></item>
		<item>
		<title>New Look to the Blog</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/mVxXc_C6IN4/</link>
		<comments>http://www.grokkinggeostudio.com/blog/new-look-to-the-blog/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 22:25:44 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=337</guid>
		<description><![CDATA[In an attempt to make this blog be more useful, I&#8217;ve updated the layout, hoping to make it easier to find what you need.
One change in particular I&#8217;d like to point out:

The Categories have been rearranged, around commands, objects or concepts in the software.  That should help you if you don&#8217;t follow the blog regularly, [...]]]></description>
			<content:encoded><![CDATA[<p>In an attempt to make this blog be more useful, I&#8217;ve updated the layout, hoping to make it easier to find what you need.</p>
<p>One change in particular I&#8217;d like to point out:</p>
<ul>
<li>The <strong>Categories</strong> have been rearranged, around commands, objects or concepts in the software.  That should help you if you don&#8217;t follow the blog regularly, or you only ran across it recently.  If you&#8217;re struggling to understand functions you can click on the <a title="Articles about Functions" href="/blog/category/functions/">Functions category</a> and immediately see everything I&#8217;ve written about functions.</li>
</ul>
<p>Summer is definitely over here in Calgary, with temperatures dipping and leaves changing colour.  When our workshop is over next week I will be getting back into serious blogging mode again and try to bring you a new tip every week.</p>
<p>As always, if you have comments, suggestions or questions, please leave a comment or email me.</p>
<p>Nate</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=mVxXc_C6IN4:lxB0RHtg99Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/mVxXc_C6IN4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/new-look-to-the-blog/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/new-look-to-the-blog/</feedburner:origLink></item>
		<item>
		<title>summer holidays</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/J1MmRT-kgok/</link>
		<comments>http://www.grokkinggeostudio.com/blog/summer-holidays/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 22:07:36 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Announcements]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=223</guid>
		<description><![CDATA[Gentle Readers,
I hope your summers have been going well (or your winter&#8211;do I have any readers from the southern hemisphere?).  This summer we&#8217;ve enjoyed beautiful weather here in Calgary, which has allowed me to rack up 800 km on my bike commuting to work.  Woohoo!
I&#8217;m going to take a short blogging break.  Grokking GeoStudio will [...]]]></description>
			<content:encoded><![CDATA[<p>Gentle Readers,</p>
<p>I hope your summers have been going well (or your winter&#8211;do I have any readers from the southern hemisphere?).  This summer we&#8217;ve enjoyed beautiful weather here in Calgary, which has allowed me to rack up 800 km on my bike commuting to work.  Woohoo!</p>
<p>I&#8217;m going to take a short blogging break.  Grokking GeoStudio will be on holidays for the next couple of weeks, but I&#8217;ll be back in time to celebrate Grokking&#8217;s first anniversary, September 19th!</p>
<p>Will any of you be attending our annual workshop in Banff this year?  September 15-18.  Look me up, I&#8217;d love to chat with you face to face.  If you haven&#8217;t signed up yet you&#8217;ll have to wait for next year&#8211;the workshop is full and the waiting list already a mile long.</p>
<p>Enjoy the rest of your summer, and look for me again in September.</p>
<p>Nate</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=J1MmRT-kgok:VRu23T2RJPo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/J1MmRT-kgok" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/summer-holidays/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/summer-holidays/</feedburner:origLink></item>
		<item>
		<title>demystifying viewer, student and basic licenses</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/bbGb0laTc2o/</link>
		<comments>http://www.grokkinggeostudio.com/blog/demystifying-viewer-student-and-basic-licenses/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 21:06:12 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Licensing]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=216</guid>
		<description><![CDATA[We have a love-hate relationship with FLEXlm, the licensing utility that is responsible for those USB dongles you have to plug in before you can run GeoStudio. 

On the one hand it&#8217;s annoying to have that dongle to keep track of, and a big pain if the automatic license renewal doesn&#8217;t work for some reason.  But [...]]]></description>
			<content:encoded><![CDATA[<p>We have a love-hate relationship with FLEXlm, the licensing utility that is responsible for those USB dongles you have to plug in before you can run GeoStudio. </p>
<p style="text-align: center;"><img class="aligncenter" title="dongles used by FLEXlm" src="http://www.geo-slope.com/images/hostids_keys.jpg" alt="" width="417" height="169" /></p>
<p>On the one hand it&#8217;s annoying to have that dongle to keep track of, and a big pain if the automatic license renewal doesn&#8217;t work for some reason.  But the nicer side is that it allows you to buy different types of licenses to better fit the way you want to use the software.</p>
<p>Even if you already own a full license, some of the other license types may still be useful to your office.</p>
<h3>Viewer License</h3>
<p>The Viewer license is free and is included automatically with every installation.  It gives you access to every feature of the software except two: saving and solving.</p>
<p>It&#8217;s great as an evaluation tool before buying a new product. </p>
<p>It&#8217;s also great for your manager who needs to review your work but doesn&#8217;t do the modeling himself.  He can open your file, look at all the definition data, explore the results using graphs, contours, exporting data to Excel if necessary, all the tools the software provides.  All without spending any money on a license.</p>
<h3>Student License</h3>
<p>The Student license is also free, and also included in every installation.  It is a very &#8220;lite&#8221; version of the software, intended to help people learn geotechnical engineering concepts, not to perform real engineering analysis.</p>
<p>You can save and solve, but you are restricted to a small mesh, a small number of regions, and so on.</p>
<p>The Student license is most useful as a teaching aid for undergraduate engineering classes.</p>
<h3>Basic License</h3>
<p>Basic licenses are the most inexpensive licenses we sell&#8211;two different options for $995 each. </p>
<p>Like the Student license, they limit access to some of the more advanced features, but are much more powerful than the Student license, and definitely powerful enough to use on the more routine geotech problems you&#8217;ll encounter.</p>
<p>There are two Basic licenses in the latest version:</p>
<ul>
<li><em>VADOSE/W Basic </em>is a 1-D version of VADOSE/W and CTRAN/W.</li>
<li><em>GeoStudio Basic</em> is a single license that gives you access to all the products except VADOSE/W.  So for a low price you get SLOPE/W, SEEP/W, SIGMA/W, QUAKE/W, TEMP/W, CTRAN/W and AIR/W.</li>
</ul>
<p>If your firm tends to do more routine analyses, you may want to consider the Basic license.</p>
<h3>Full License</h3>
<p>The full license, of course, gives you access to all the features of a particular product.</p>
<h3>Picking Your License</h3>
<p>You choose between those four types of license from the Start Page, <em>before </em>opening or creating a file.  In the most recent version the options look like this:</p>
<p style="text-align: center;"><img class="size-full wp-image-218 aligncenter" title="In GeoStudio 2007 the license types are colour-coded to make it more obvious when you\'re not using a full license." src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/08/picking-license-2007.png" alt="" width="368" height="114" /></p>
<p>In version 6 (GeoStudio 2004) they look like this:</p>
<h4 style="text-align: center;"><img class="size-full wp-image-217 aligncenter" title="Picking a license type in GeoStudio 2004" src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/08/picking-license-2004.png" alt="" width="293" height="113" /></h4>
<h3>More Information</h3>
<p>You can read more online about <a href="http://www.geo-slope.com/products/geostudiobasic.aspx">GeoStudio Basic</a>, <a href="http://www.geo-slope.com/products/vadosewbasic2007.aspx">VADOSE/W Basic</a> and the <a href="http://www.geo-slope.com/tips/studentedition.aspx">Student Edition</a>.  The <a href="http://www.geo-slope.com/res/GeoStudio2007_ProductDetails.pdf">GeoStudio 2007 Product Details</a> brochure shows which features are limited in the lite versions.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=bbGb0laTc2o:JgDpXoi9xQU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/bbGb0laTc2o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/demystifying-viewer-student-and-basic-licenses/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/demystifying-viewer-student-and-basic-licenses/</feedburner:origLink></item>
		<item>
		<title>more template tips</title>
		<link>http://feedproxy.google.com/~r/GrokkingGeostudio/~3/rIKm40jb71Y/</link>
		<comments>http://www.grokkinggeostudio.com/blog/more-template-tips/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 17:18:28 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
		
		<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://www.grokkinggeostudio.com/?p=197</guid>
		<description><![CDATA[While we&#8217;re on the topic of templates, here are a few more tips to use them effectively.
Default template
Choose File - New, select a template, then click &#8220;Make this the default template&#8221; if you want to use this template all the time.

The default template will be used any time you start a new file by clicking [...]]]></description>
			<content:encoded><![CDATA[<p>While we&#8217;re on the <a title="templates" href="http://www.grokkinggeostudio.com/blog/templates/">topic of templates</a>, here are a few more tips to use them effectively.</p>
<h3>Default template</h3>
<p>Choose File - New, select a template, then click &#8220;Make this the default template&#8221; if you want to use this template all the time.</p>
<p style="text-align: center;"><img class="size-full wp-image-206 aligncenter" title="Mark a particular template as your default template." src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/08/template-make-default.png" alt="" width="473" height="286" /></p>
<p>The default template will be used any time you start a new file by clicking the &#8220;New File&#8221; button in the toolbar, or by clicking one of the product icons on the Start Page.</p>
<p style="text-align: center;"><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2008/08/new-file-from-start-page.png"><img class="size-full wp-image-208 aligncenter" title="Creating a new file fromt the Start Page or the menu uses the default template." src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/08/new-file-from-start-page-thumb.png" alt="" width="317" height="130" /></a></p>
<p>The default template should also be the one that is selected initially when you choose File - New from the menu (though that appears to be broken in the current version&#8211;I&#8217;m hoping we can fix it in the next release).</p>
<h3>Creating a New File From the Menu, Toolbar or Start Page</h3>
<p>As I alluded to, there are several ways to create a new file, and they all work a bit differently.</p>
<ul>
<li>Choosing <strong>File - New from the <em>menu</em></strong> always shows the box where you get to choose a template, followed by the KeyIn Analyses box.  Since the default templates we ship do not contain any analyses, the KeyIn Analyses box is initially empty.  If your template does have one or more analyses in it, they will show up in KeyIn Analyses.</li>
<li>Choosing the <strong>&#8220;New File&#8221; button from the <em>toolbar</em></strong> uses the default template.  The result is as if you used the menu item, clicked &#8220;Create from this template&#8221;, selected the default template, then clicked Create.</li>
<li>Clicking one of the <strong>product icons on the Start Page</strong> (next to the &#8220;New&#8221; tab) uses the default template and creates a new analysis.  The result is as if you clicked the &#8220;New File&#8221; toolbar button, then created an analysis.  So if your default template already has one analysis, you&#8217;ll end up with two (the template one and the new one).</li>
</ul>
<h3>Create From Existing</h3>
<p>You can use any existing .gsz file as if it were a template.  Choose File - New from the menu, then click the &#8220;Create From Existing&#8230;&#8221; button and choose a .gsz. </p>
<p style="text-align: center;"><a href="http://www.grokkinggeostudio.com/wp-content/uploads/2008/08/create-from-existing.png"><img class="size-full wp-image-210 aligncenter" title="You can use any file as a template." src="http://www.grokkinggeostudio.com/wp-content/uploads/2008/08/create-from-existing-thumb.png" alt="" width="500" height="316" /></a></p>
<p>The .gsz file gets opened but has no name, so when you try to save it you get prompted for a new file name.</p>
<h3>The Location of the Templates Folder</h3>
<p>The templates listed when you choose File - New are all .gsz files from your Templates folder.  The location of the Templates folder can be changed in Tools - Options.  One reason you may want to change the location is to share templates with others in the same company&#8211;you could create a Templates folder on a shared location on the network.</p>
<h3>No Analyses</h3>
<p>You may want to create a template with no analyses in it, like the ones that ship with the software.  That&#8217;s handy if you don&#8217;t know what analyses will be used, but you want to set up some common defaults, like default boundary conditions, materials, or units.</p>
<p>To create a template with no analyses, you start out (unintuitively) by creating <em>all</em> the analyses you could possibly want (e.g., one SLOPE/W, one SEEP/W, etc.).  That gives you the framework in which you can define the appropriate boundary conditions, materials, and so on.  Don&#8217;t set any analysis-specific properties like time steps (because our next step is going to be to delete the analyses); only create <a title="global vs analysis objects" href="http://www.grokkinggeostudio.com/blog/global-vs-analysis-objects/">global objects</a>.</p>
<p>Now delete all the analyses you created.  The global objects (boundary conditions, materials) and the file-specific settings (units, scale, extents) will remain, but when you start a new file with this template you&#8217;ll have no analyses.  As soon as you add an analysis, you&#8217;ll see the global objects that apply to it.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/GrokkingGeostudio?a=rIKm40jb71Y:CkTEtuHajhY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/GrokkingGeostudio?d=yIl2AUoC8zA" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/GrokkingGeostudio/~4/rIKm40jb71Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.grokkinggeostudio.com/blog/more-template-tips/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.grokkinggeostudio.com/blog/more-template-tips/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic Page Served (once) in 0.649 seconds --><!-- Cached page served by WP-Cache -->
