<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Nanoprobe Network &#187; Software Library</title>
	<atom:link href="http://nanoprobenetwork.org/category/software-library/feed" rel="self" type="application/rss+xml" />
	<link>http://nanoprobenetwork.org</link>
	<description>An interactive, international virtual community dedicated to the science and technology of nano and bio scanning probes</description>
	<lastBuildDate>Fri, 03 Feb 2012 03:11:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Stripped-Down Friction vs. Load Calibrator</title>
		<link>http://nanoprobenetwork.org/software-library/data-processing-and-analysis/stripped-down-friction-vs-load-calibrator</link>
		<comments>http://nanoprobenetwork.org/software-library/data-processing-and-analysis/stripped-down-friction-vs-load-calibrator#comments</comments>
		<pubDate>Wed, 19 Jan 2011 11:02:26 +0000</pubDate>
		<dc:creator>tgoren</dc:creator>
				<category><![CDATA[Data Processing and Analysis]]></category>

		<guid isPermaLink="false">http://nanoprobenetwork.org/?p=836</guid>
		<description><![CDATA[Here is a stripped-down version of the Carpick Group&#8217;s Matlab code to calibrate Friction vs. Load via the wedge method (as posted previously in his Software Toolbox). This stripped version has the file preprocessing removed, and the corresponding data is collected from user input, so that it can be used for any AFM scanning an [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a stripped-down version of the Carpick Group&#8217;s Matlab code to calibrate Friction vs. Load via the wedge method (as posted previously in his Software Toolbox). This stripped version has the file preprocessing removed, and the corresponding data is collected from user input, so that it can be used for any AFM scanning an appropriate calibration grid.</p>
<p><span id="more-836"></span>Please see the image key for the explanation of the input variables. Note that all variables must be entered following an absolute sign convention, not the one shown in the key, for example one of the thetas should be a negative number and entered as such.<br />
<a href="http://nanoprobenetwork.org/wp-content/uploads/2011/01/friction_v_load_new_stripped.m">friction_v_load_new_stripped.m</a><br />
<a href="http://nanoprobenetwork.org/wp-content/uploads/2011/01/key1.png">inputs key</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nanoprobenetwork.org/software-library/data-processing-and-analysis/stripped-down-friction-vs-load-calibrator/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Matlab Files for Reading NanoScope Data</title>
		<link>http://nanoprobenetwork.org/software-library/matlab-files-for-reading-nanoscope-data</link>
		<comments>http://nanoprobenetwork.org/software-library/matlab-files-for-reading-nanoscope-data#comments</comments>
		<pubDate>Fri, 30 Jul 2010 19:40:00 +0000</pubDate>
		<dc:creator>Jennifer Hampton</dc:creator>
				<category><![CDATA[Data Processing and Analysis]]></category>
		<category><![CDATA[Software Library]]></category>

		<guid isPermaLink="false">http://nanoprobenetwork.org/?p=566</guid>
		<description><![CDATA[Submission by: Jennifer R. Hampton 7/13/10 Updated 1/21/11:  Fixed links. Original Submission:  2/16/09 (post here) These programs, which are based on the Carpick Lab Toolbox, are used to extract the data from a NanoScope data file. The scaled results are placed in the matrix data, an N x M x L matrix, where N is [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Submission by: <a href="http://nanoprobenetwork.org/author/jrhampton">Jennifer R. Hampton</a> 7/13/10</strong><br />
<strong>Updated 1/21/11:  Fixed links.</strong><br />
<strong>Original Submission:  2/16/09 (post <a href="http://nanoprobenetwork.org/software-library/matlab-files-for-image-processing-and-analysis">here</a>)</strong></p>
<p>These programs, which are based on the <a href="http://nanoprobenetwork.org/software-library/welcome-to-the-carpick-labs-software-toolbox">Carpick Lab Toolbox</a>, are used to extract the data from a NanoScope data file.<span id="more-566"></span></p>
<p>The scaled results are placed in the matrix data, an N x M x L matrix, where N is the number of lines, M is the number of points per line (N = M in most cases), and L is the number of simultaneous data channels recorded.  The assumption is that the first data channel is topgraphy and all the other channels are not topography.  The data output is nm for the first channel and V for all subsequent channels.  It has been tested on data files with only one channel (topography) three channels (topography and LFM forward and back), and four channels (topography, peak force error, inphase and quadrature).</p>
<p>usage: data = open_di(file_name)<br />
To use open_di.m, you need get_num.m (included here) and di_header_find.m (in the <a href="http://nanoprobenetwork.org/software-library/welcome-to-the-carpick-labs-software-toolbox">Carpick Lab Toolbox</a>).</p>
<p>Original Version:  Jennifer R. Hampton  2/16/09<br />
7/13/10: adapted for NanoScope v 8.1 data files</p>
<p>Changes in v2:<br />
1) Searching the header for scale_data2 now looks for the string &#8216;\@2:Z scale: V&#8217;<br />
2) The output matrix, data, is preallocated before the final loop.</p>
<p><a href="http://nanoprobenetwork.org/wp-content/uploads/2010/07/open_di.m"></a><a href="http://nanoprobenetwork.org/wp-content/uploads/2011/01/open_di.m">open_di.m</a></p>
<p>The file open_di.m is based on get_image_data.m from the Carpick Lab Toolbox, but with updated scaling, as described in the comments of the file. The heart of the code (reading data and placing it in the output matrix) is the same as in get_image_data.m.</p>
<p><a href="http://nanoprobenetwork.org/wp-content/uploads/2010/07/get_num.m"></a><a href="http://nanoprobenetwork.org/wp-content/uploads/2010/07/get_num.m">get_num.m</a></p>
<p>The file get_num.m is a rewritten version of extract_num.m from the Carpick Lab Toolbox. The change was necessary to make sure that the correct number from each header line was extracted.</p>
<p><a href="http://nanoprobenetwork.org/wp-content/uploads/2010/07/open_di_information.txt"></a><a href="http://nanoprobenetwork.org/wp-content/uploads/2010/07/open_di_information.txt">open_di_information.txt</a></p>
<p>The file open_di_information.txt contains the information described above and additional information about the scaling from hardware to physical units.</p>
]]></content:encoded>
			<wfw:commentRss>http://nanoprobenetwork.org/software-library/matlab-files-for-reading-nanoscope-data/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Nanonis Software from SPECS</title>
		<link>http://nanoprobenetwork.org/software-library/spm-simulators/free-nanonis-software-from-specs</link>
		<comments>http://nanoprobenetwork.org/software-library/spm-simulators/free-nanonis-software-from-specs#comments</comments>
		<pubDate>Tue, 23 Jun 2009 14:31:26 +0000</pubDate>
		<dc:creator>glengel</dc:creator>
				<category><![CDATA[SPM Simulators]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[AFM]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Scanned Probe Microscopies]]></category>
		<category><![CDATA[STM]]></category>
		<category><![CDATA[Teaching Tools]]></category>

		<guid isPermaLink="false">http://nanoprobenetwork.org/free-nanonis-software-from-specs</guid>
		<description><![CDATA[SPECS GmbH is pleased to offer a valuable teaching tool for newcomers to STM. The available program is identical to the actual control software included with our world renowned SPM control platform. By using the included tutorial and online help, you will learn how to perform a coarse approach, optimize feedback control, navigate around a [...]]]></description>
			<content:encoded><![CDATA[<p>SPECS GmbH is pleased to offer a valuable teaching tool for newcomers to STM. The available program is identical to the actual control software included with our world renowned SPM control platform. By using the included tutorial and online help, you will learn how to perform a coarse approach, optimize feedback control, navigate around a surface, use sophisticated spectroscopy routines, as well as a multitude of other techniques. Experience firsthand the flexibility and power of <span id="more-239"></span> the Nanonis platform while using it to teach the principles of microscope operation without fear of damaging a microscope or tip.</p>
<p>Download the free software by clicking <a href="http://www.specs-zurich.com/en/STM-Simulator.html"> here </a></p>
]]></content:encoded>
			<wfw:commentRss>http://nanoprobenetwork.org/software-library/spm-simulators/free-nanonis-software-from-specs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Atomic force microscopy analysis of cell volume regulation</title>
		<link>http://nanoprobenetwork.org/software-library/atomic-force-microscopy-analysis-of-cell-volume-regulation</link>
		<comments>http://nanoprobenetwork.org/software-library/atomic-force-microscopy-analysis-of-cell-volume-regulation#comments</comments>
		<pubDate>Mon, 16 Mar 2009 19:53:34 +0000</pubDate>
		<dc:creator>NN Admin</dc:creator>
				<category><![CDATA[Software Library]]></category>

		<guid isPermaLink="false">http://nanoprobenetwork.org/atomic-force-microscopy-analysis-of-cell-volume-regulation</guid>
		<description><![CDATA[We wrote a general program for fitting data that we used for about 50k FZ runs on cells (Spagnoli, C., A. Beyder, S. Besch, and F. Sachs. 2008. Atomic force microscopy analysis of cell volume regulation. Phys Rev E Stat Nonlin Soft Matter Phys 78:031916). &#8220;Fitness&#8221; fit the contact points as well as the rest [...]]]></description>
			<content:encoded><![CDATA[<p>We wrote a general program for fitting data that we used for about 50k FZ runs on cells (Spagnoli, C., A. Beyder, S. Besch, and F. Sachs. 2008. Atomic force microscopy analysis of cell volume regulation. Phys Rev E Stat Nonlin Soft Matter Phys 78:031916). &#8220;Fitness&#8221; fit the contact points as well as the rest of the Hertz model (or any other model) along with periodic sinusoidal noise and baseline drift. The program allows you <span id="more-185"></span> to create automated strategies for fitting, such as first fit the baseline to a linear drift, then fit sinusoidal background, hold those still and then fit contact and slope, then relax all parameters, etc. Fitness can fit data to systems of ODEs as well as whatever function you wish to enter. You can use the same starting values or the parameters from the previous fit as starting parameters. The program is GUIeD in windows and it is free at <a href="http://www.qub.buffalo.edu" target="_blank">www.qub.buffalo.edu</a></p>
<p>Dr. Frederick Sachs</p>
<p>SUNY Distinguished Professor</p>
<p>Center for Single Molecule Biophysics</p>
<p>Physiology and Biophysical Sciences</p>
<p>301 Cary Hall, SUNY</p>
<p>Buffalo, NY 14214</p>
<p>Voice Mail (716) 829-3289 x105</p>
<p>FAX (716) 829-2569</p>
<p>Email: sachs@buffalo.edu</p>
<p>www.sachslab.buffalo.edu</p>
]]></content:encoded>
			<wfw:commentRss>http://nanoprobenetwork.org/software-library/atomic-force-microscopy-analysis-of-cell-volume-regulation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Matlab Files for Image Processing and Analysis</title>
		<link>http://nanoprobenetwork.org/software-library/matlab-files-for-image-processing-and-analysis</link>
		<comments>http://nanoprobenetwork.org/software-library/matlab-files-for-image-processing-and-analysis#comments</comments>
		<pubDate>Tue, 03 Mar 2009 19:22:33 +0000</pubDate>
		<dc:creator>Jennifer Hampton</dc:creator>
				<category><![CDATA[Data Processing and Analysis]]></category>
		<category><![CDATA[Software Library]]></category>

		<guid isPermaLink="false">http://nanoprobenetwork.org/matlab-files-for-image-processing-and-analysis</guid>
		<description><![CDATA[Submission by: Jennifer R. Hampton 2/16/09 Updated 1/21/11:  Fixed links. Updated  7/30/10:  Updated versions of these files are available here. These programs, which are based on the Carpick Lab Toolbox, are used to extract the data from a NanoScope data file. The scaled results are placed in the matrix data, an N x M x [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Submission by: <a href="http://nanoprobenetwork.org/author/jrhampton">Jennifer R. Hampton</a> 2/16/09</strong><br />
<strong>Updated 1/21/11:  Fixed links.</strong><br />
<strong>Updated  7/30/10:  Updated versions of these files are available <a href="http://nanoprobenetwork.org/software-library/matlab-files-for-reading-nanoscope-data">here</a>.</strong></p>
<p>These programs, which are based on the <a href="http://nanoprobenetwork.org/software-library/welcome-to-the-carpick-labs-software-toolbox">Carpick Lab Toolbox</a>, are used to extract the data from a NanoScope data file.</p>
<p>The scaled results are placed in the matrix data, an N x M x L matrix, where N is the number of lines, M is the number of points per line (N = M in most cases), <span id="more-168"></span> and L is the number of simultaneous data channels recorded. The assumption is that the first data channel is topgraphy and all the other channels are not topography. The data output is nm for the first channel and V for all subsequent channels. It has been tested on data files with only one channel (topography) and data files with three channels (topography and LFM forward and back).</p>
<p>usage: data = open_di(file_name)</p>
<p>To use open_di.m, you need get_num.m (included here) and di_header_find.m (in the <a href="http://nanoprobenetwork.org/software-library/welcome-to-the-carpick-labs-software-toolbox">Carpick Lab Toolbox</a>).</p>
<p><a href="http://nanoprobenetwork.org/wp-content/uploads/2010/07/open_di_v1.m">open_di_v1.m</a></p>
<p>The file open_di.m (v1) is based on get_image_data.m from the Carpick Lab Toolbox, but with updated scaling, as described in the comments of the file. The heart of the code (reading data and placing it in the output matrix) is the same as in get_image_data.m.</p>
<p><a title="get_num.m" href="http://nanoprobenetwork.org/wp-content/uploads/2009/03/get_num.m"></a><a href="http://nanoprobenetwork.org/wp-content/uploads/2010/07/get_num.m">get_num.m</a></p>
<p>The file get_num.m is a rewritten version of extract_num.m from the Carpick Lab Toolbox. The change was necessary to make sure that the correct number from each header line was extracted.</p>
<p><a href="http://nanoprobenetwork.org/wp-content/uploads/2010/07/open_di_information_v1.txt">open_di_information_v1.txt</a><a title="open_di_information.txt" href="http://nanoprobenetwork.org/wp-content/uploads/2009/03/open_di_information.txt"></a></p>
<p>The file open_di_information.txt (v1) contains the information described above and additional information about the scaling from hardware to physical units.</p>
]]></content:encoded>
			<wfw:commentRss>http://nanoprobenetwork.org/software-library/matlab-files-for-image-processing-and-analysis/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free demo: NanoTimes&#8217; commercial SPM simulator software</title>
		<link>http://nanoprobenetwork.org/software-library/spm-simulators/free-demo-of-commercial-spm-simulator-software-available</link>
		<comments>http://nanoprobenetwork.org/software-library/spm-simulators/free-demo-of-commercial-spm-simulator-software-available#comments</comments>
		<pubDate>Mon, 27 Oct 2008 00:11:53 +0000</pubDate>
		<dc:creator>carpick</dc:creator>
				<category><![CDATA[SPM Simulators]]></category>

		<guid isPermaLink="false">http://nanoprobenetwork.org/?p=130</guid>
		<description><![CDATA[The company NanoTimes offers a commercial STM simluator product called &#8220;Nt_STM&#8221;. A free demo version is available from their website: http://www.nanotimes-corp.com/. STM researchers spend substantial time deciphering STM images. The software, which provides 3-D color imaging of research findings, has the potential to save time and money for people researching novel properties on the nanoscale [...]]]></description>
			<content:encoded><![CDATA[<p>The company NanoTimes offers a commercial STM simluator product called &#8220;Nt_STM&#8221;. A free demo version is available from their website: <a href="http://www.nanotimes-corp.com/" target="_blank">http://www.nanotimes-corp.com/</a>.</p>
<p>STM researchers spend substantial time deciphering STM images. The software, which provides 3-D color imaging of research findings, has the potential to save time and money for people researching novel properties on the nanoscale with STM.</p>
<p>Nt_STM calculates the electrical current through any given nanometrical system (microscope tip + sample + surface) and <span id="more-130"></span> reproduces the results of a real STM. It gives current or topographic mode results as well as I(v) or I(z) curves, just like in the STM experiment.</p>
<p>The nanometrical system is represented by the Extended Hückel Theory (EHT). More precise theoretical chemistry programs can be integrated to &#8221;Nt_STM&#8221; for specific simulations. The program involves drawing your system, designing your surface and tip, adjusting your EHT quantum parameters, then launching the simulation and comparing the simulated results with that of your STM.</p>
<p>An AFM simulation package is in the works.</p>
]]></content:encoded>
			<wfw:commentRss>http://nanoprobenetwork.org/software-library/spm-simulators/free-demo-of-commercial-spm-simulator-software-available/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image SxM: Free SPM Software</title>
		<link>http://nanoprobenetwork.org/software-library/image-sxm-free-spm-software</link>
		<comments>http://nanoprobenetwork.org/software-library/image-sxm-free-spm-software#comments</comments>
		<pubDate>Sat, 13 Sep 2008 13:45:29 +0000</pubDate>
		<dc:creator>carpick</dc:creator>
				<category><![CDATA[Data Processing and Analysis]]></category>
		<category><![CDATA[Software Library]]></category>

		<guid isPermaLink="false">http://nanoprobenetwork.org/?p=109</guid>
		<description><![CDATA[Image SXM is a version of the public domain image analysis software NIH Image that has been extended to handle the loading, display and analysis of scanning microscope images. Image SXM supports SAM, SCM, SEM, SFM, SLM, SNOM, SPM and STM images from many different SPM systems.The software is written by Steve Barrett at the [...]]]></description>
			<content:encoded><![CDATA[<p>Image SXM is a version of the public domain image analysis software <a href="http://www.liv.ac.uk/~sdb/ImageSXM/" target="_blank">NIH Image</a>  that has been extended to handle the loading, display and analysis of scanning microscope images. Image SXM supports SAM, SCM, SEM, SFM, SLM, SNOM, SPM and STM images from many different SPM systems.The software is written by Steve Barrett at the University of Liverpool.</p>
<p>To download the software, click here: <a href="http://www.liv.ac.uk/~sdb/ImageSXM/" target="_blank">http://www.liv.ac.uk/~sdb/ImageSXM/</a></p>
<p> <span id="more-109"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://nanoprobenetwork.org/software-library/image-sxm-free-spm-software/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free software from Nanoscience Instruments</title>
		<link>http://nanoprobenetwork.org/software-library/free-software-from-nanoscience-instruments</link>
		<comments>http://nanoprobenetwork.org/software-library/free-software-from-nanoscience-instruments#comments</comments>
		<pubDate>Fri, 15 Aug 2008 00:36:03 +0000</pubDate>
		<dc:creator>carpick</dc:creator>
				<category><![CDATA[SPM Simulators]]></category>
		<category><![CDATA[Software Library]]></category>

		<guid isPermaLink="false">http://nanoprobenetwork.org/?p=107</guid>
		<description><![CDATA[Description: Free software from Nanoscience Instruments for simulating various aspects of AFM, specifically: (1) AFM Model. Set gain, scan speed, and sample height to visualize a the response of a beam-deflection AFM. Courtesy of Dr. Joseph Griffith (2) Driven Oscillator. Control frequency and damping of a driven oscillator and view the resulting quality factor and [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Description</strong>: Free software from Nanoscience Instruments for simulating various aspects of AFM, specifically:</p>
<p>(1) <strong>AFM Model</strong>. Set gain, scan speed, and sample height to visualize a the response of a beam-deflection AFM.</p>
<p>Courtesy of Dr. Joseph Griffith</p>
<p>(2) <strong>Driven Oscillator</strong>. Control frequency and damping of a driven oscillator and view the resulting quality factor and visualize plots of both the driving and resulting frequencies. Great to gain understanding of a Dynamic AFM cantilever!</p>
<p>Courtesy of Dr. Joseph <span id="more-107"></span> Griffith</p>
<p>(3) <strong>Probe Simulator</strong>. Simulate the effects of AFM probe size and shape, as well as feature size. Watch how the AFM tip interacts and view the recorded data.</p>
<p><a href="http://www.nanoscience.com/education/software.html" target="_blank">Click here to download.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nanoprobenetwork.org/software-library/free-software-from-nanoscience-instruments/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WSxM: Free SPM Software</title>
		<link>http://nanoprobenetwork.org/software-library/wsxm-free-spm-software</link>
		<comments>http://nanoprobenetwork.org/software-library/wsxm-free-spm-software#comments</comments>
		<pubDate>Fri, 15 Aug 2008 00:13:42 +0000</pubDate>
		<dc:creator>carpick</dc:creator>
				<category><![CDATA[Data Processing and Analysis]]></category>
		<category><![CDATA[Software Library]]></category>

		<guid isPermaLink="false">http://nanoprobenetwork.org/?p=106</guid>
		<description><![CDATA[Description: WSxM is free SPM software developed by the company Nanotec Electronica. Click here to download.]]></description>
			<content:encoded><![CDATA[<p>Description: WSxM is free SPM software developed by the company Nanotec Electronica.</p>
<p><a href="http://www.nanotec.es/wsxmGeneral.html" target="_blank">Click here to download. </a></p>
<p> <span id="more-106"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://nanoprobenetwork.org/software-library/wsxm-free-spm-software/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Carpick Lab&#8217;s Software Toolbox (software tools for nanotribology research with AFM)</title>
		<link>http://nanoprobenetwork.org/software-library/welcome-to-the-carpick-labs-software-toolbox</link>
		<comments>http://nanoprobenetwork.org/software-library/welcome-to-the-carpick-labs-software-toolbox#comments</comments>
		<pubDate>Wed, 11 Jun 2008 13:08:57 +0000</pubDate>
		<dc:creator>carpick</dc:creator>
				<category><![CDATA[Data Processing and Analysis]]></category>
		<category><![CDATA[Software Library]]></category>

		<guid isPermaLink="false">http://nanoprobenetwork.org/?p=84</guid>
		<description><![CDATA[Below you will find descriptions and links to files for analyzing AFM images for nanotribology research. This page provides free access to the analysis tools developed by the Carpick group at the University of Pennsylvania. Among the tools available here are instructions for gathering friction versus load (FvL) data from a Bruker (formerly Veeco and [...]]]></description>
			<content:encoded><![CDATA[<p>Below you will find descriptions and links to files for analyzing AFM images for nanotribology research.  This page provides free access to the analysis tools developed by the Carpick group at the University of Pennsylvania. Among the tools available here are instructions for gathering friction versus load (FvL) data from a Bruker (formerly Veeco and Digital Instruments or DI) NanoScope (III or IV) AFM, MatLab scripts for analyzing FvL and adhesion data, and directions for the use<span id="more-84"></span> of these scripts. Please read carefully the headers in each of the scripts and the directions in the manual provided below:  <a title="FvL Analysis Manual" href="http://nanoprobenetwork.org/wp-content/uploads/2008/06/analyzingfvldata.pdf">FvL Analysis Manual</a> Please note that all materials on this page are Copyrighted by the Carpick Group at the University of Pennsylvania. They are authorized for use in government or academic research laboratories and non-profit institutions only. You are welcome to modify, re-post, and distribute these files as long as you provide attribution to the original source (this web site).  Please report any bugs by writing a Comment below.  <strong>Processing a NanoScope file</strong>The following scripts handle DI data files as described in the manual. You will need &#8216;get_image_data,&#8217; &#8216;di_version,&#8217; &#8216;di_header_find,&#8217; and &#8216;extract_num&#8217; to read DI data into a MatLab array. The two files &#8216;nano3read&#8217; and &#8216;getparameter&#8217; are the original copyrighted source code for each of the files as indicated.</p>
<ul>
<li><a title="get_image_data" href="http://nanoprobenetwork.org/wp-content/uploads/2008/06/get_image_data.m" target="_blank">get_image_data.m</a><a title="get_image_data" rel="attachment wp-att-87" href="http://nanoprobenetwork.org/software-library/welcome-to-the-carpick-labs-software-toolbox/attachment/get_image_data"></a></li>
<li><a title="di_header_find.m" href="http://nanoprobenetwork.org/wp-content/uploads/2008/06/di_header_find.m" target="_blank">di_header_find.m</a></li>
<li><a href="http://nanoprobenetwork.org/wp-content/uploads/2008/06/di_version.m" target="_blank">di_versio.m</a></li>
<li><a title="extract_num.m" href="http://nanoprobenetwork.org/wp-content/uploads/2008/06/extract_num.m">extract_num.m</a></li>
<li><a href="http://nanoprobenetwork.org/wp-content/uploads/2008/06/nano3read.m" target="_blank">nano3read.m</a> (original source code for get_image_data)</li>
<li><a href="http://nanoprobenetwork.org/wp-content/uploads/2008/06/getparameter.m" target="_blank">getparameter.m</a> (orig. code for di_header_find and extract_num)</li>
</ul>
<p><strong>Calculating Friction vs Load</strong> (UPDATED DEC. 2010) The most important script to analyze your FvL data is &#8216;friction_v_load_new.&#8217; To process large batches of data, use &#8216;batch_process&#8217; (see the manual). File &#8216;latcal&#8217; is a Mathcad file that uses the output of the Lateral Calibration function of &#8216;friction_v_load&#8217; to find the ratio between normal and lateral calibration factors.</p>
<ul>
<li><a href="http://nanoprobenetwork.org/wp-content/uploads/2008/06/friction_v_load_new.txt">friction_v_load_new</a> (Matlab file &#8211; save this file, then change the &#8220;.txt&#8221; extension to &#8220;.m&#8221; to use in Matlab) UPDATED DEC., 2010</li>
<li><a href="http://www.seas.upenn.edu/~carpick/software_toolbox/batch_process.m">batch_process.m</a> (Matlab file)</li>
<li><a href="http://www.seas.upenn.edu/~carpick/software_toolbox/latcal.mcd">latcal.mcd</a> (MathCad file)</li>
</ul>
<p><strong>Measuring Pull-Off Forces (UPDATED JULY, 2010) </strong> The following files are applicable to force-distance data files only. The output of &#8216;getfd&#8217; is the pull-off force in volts and the slope of the contact region of a force curve (normal signal deflection sensitivity in volts per nm).</p>
<p>batchfd_new.m is the actual code that you run. This one allows you to run the analysis on a series of force-distance curves. It uses either getfd_new.m or getfd_new_oldNanoscope.m to do the analysis (you can change this on line #48 in batchfd_new.m).</p>
<p>If you are using a newer version of Nanoscope (v6.x), use getfd_new, and if you are using an older version, use the getfd_new_oldNanoscope one.  To use batchfd_new.m as-is, all the base names of the files need to be the same, and the file extensions should be consecutive (e.g., forcecurve.000,  forcecurve.001,  forcecurve.002 &#8230;).  So you will first pick the first file, and then you will tell the program what the extension is on the last file in the sequence.  When you run the code, it will show you each force-distance curve, and it will put some markers on the plots. The green and blue markers indicate the range over which the in-contact slope is calculated (V/nm). The red marker indicates the pull-off point. The black marker indicates what the out-of-contact voltage is, and it&#8217;s positioned directly above the pull-off point.  The code will then display the average pull-off deflection (nm) and its standard deviation. A file is saved that contains the slope (V/nm), pull-off voltage (V), pull-off deflection (nm), and max deflection (nm). If you use Kaleidagraph, you can drag this file into Kaleidagraph (using Space as the delimiter, skipping 0 lines, and reading the titles).</p>
<ul>
<li><a href="http://nanoprobenetwork.org/wp-content/uploads/2010/07/getfd_new.m">getfd_new.m</a></li>
<li><a href="http://nanoprobenetwork.org/wp-content/uploads/2010/07/getfd_new_oldNanoscope.m">getfd_new_oldNanoscope.m</a></li>
<li><a href="http://nanoprobenetwork.org/wp-content/uploads/2010/07/batchfd_new.M">batchfd_new.m</a></li>
</ul>
<p>For your convenience, all Matlab and Mathcad files are zipped here: <a href="http://www.seas.upenn.edu/~carpick/software_toolbox/SWfiles.zip">SWfiles</a> (note: this ZIP file does not include the new versions of getfd and batchfd. Upload those directly above. Sorry for the inconvenience.)</p>
]]></content:encoded>
			<wfw:commentRss>http://nanoprobenetwork.org/software-library/welcome-to-the-carpick-labs-software-toolbox/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

