<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://ltwiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=115.128.26.31</id>
	<title>LTwiki-Wiki for LTspice - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://ltwiki.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=115.128.26.31"/>
	<link rel="alternate" type="text/html" href="http://ltwiki.org/index.php?title=Special:Contributions/115.128.26.31"/>
	<updated>2026-04-22T10:48:21Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.7</generator>
	<entry>
		<id>http://ltwiki.org/index.php?title=Talk:Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=67</id>
		<title>Talk:Hints on using individual LTspice commands and things the Help Manual sometimes may not help you with</title>
		<link rel="alternate" type="text/html" href="http://ltwiki.org/index.php?title=Talk:Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=67"/>
		<updated>2009-08-10T00:05:41Z</updated>

		<summary type="html">&lt;p&gt;115.128.26.31: Created page with &amp;#039;  Can somebody move the text to article &amp;quot;.Param and Curly Brackets&amp;quot; into a folded sub page of text to allow for multiple linked entries   Dont know how to created a linked page y…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
Can somebody move the text to article &amp;quot;.Param and Curly Brackets&amp;quot;&lt;br /&gt;
into a folded sub page of text to allow for multiple linked entries &lt;br /&gt;
&lt;br /&gt;
Dont know how to created a linked page yet &lt;br /&gt;
&lt;br /&gt;
Thanks&lt;/div&gt;</summary>
		<author><name>115.128.26.31</name></author>
		
	</entry>
	<entry>
		<id>http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=66</id>
		<title>Hints on using individual LTspice commands and things the Help Manual sometimes may not help you with</title>
		<link rel="alternate" type="text/html" href="http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=66"/>
		<updated>2009-08-10T00:03:31Z</updated>

		<summary type="html">&lt;p&gt;115.128.26.31: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Add items as subpages (rather than details at this page level)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== .Param and Curly Brackets ==&lt;br /&gt;
.param&lt;br /&gt;
&lt;br /&gt;
One of the more confusing aspects of using .param (at least when I began using LT) was where and when do you use the curly barckets {} ?&lt;br /&gt;
&lt;br /&gt;
Beginning with the simplest definition, LT doesn&amp;#039;t require curly brackets &lt;br /&gt;
&lt;br /&gt;
.param res1 = 1000&lt;br /&gt;
&lt;br /&gt;
This could be used to define a resistor of 1000 Ohms &lt;br /&gt;
&lt;br /&gt;
However, in the real world, a parameter sometimes needs to be defined from other parameters.&lt;br /&gt;
&lt;br /&gt;
To get results and not pull errors within LT, it becomes useful to use curly brackets.&lt;br /&gt;
Without them - you can only nest (calculated) .param values, one parameter calculation deep.&lt;br /&gt;
&lt;br /&gt;
Going any deeper (where one calculation depends on another etc) will invite LTspice to complain with an error.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Correct Method  { doesn&amp;#039;t pull errors }&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
*&amp;lt;/nowiki&amp;gt; Comment line : Calculate capacitance&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt; -------------------------------------&lt;br /&gt;
&lt;br /&gt;
.param length = {3e-2}&lt;br /&gt;
 &lt;br /&gt;
.param width  = {4e-3}&lt;br /&gt;
&lt;br /&gt;
.param area = {length * width}&lt;br /&gt;
&lt;br /&gt;
.param gap = {40e-6}&lt;br /&gt;
&lt;br /&gt;
.param Eo = {8.85e-12}&lt;br /&gt;
&lt;br /&gt;
.param Capa = { (Eo * gap) / area}&lt;br /&gt;
&lt;br /&gt;
.MEAS Capa_  PARAM Capa&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The answer (from the error log ) is:&lt;br /&gt;
capa_: capa=2.95e-012&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To see the results in LTspice &lt;br /&gt;
Use the Error Log (a better name would have been the results log) &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Incorrect method (pulls errors)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
.param length = 3e-2 &lt;br /&gt;
&lt;br /&gt;
.param width  = 4e-3&lt;br /&gt;
&lt;br /&gt;
.param area = length * width&lt;br /&gt;
&lt;br /&gt;
.param gap = 40e-6&lt;br /&gt;
&lt;br /&gt;
.param Eo = 8.85e-12&lt;br /&gt;
&lt;br /&gt;
.param Cap =  (Eo * gap) / area}&lt;br /&gt;
&lt;br /&gt;
.MEAS Capa_  PARAM Capa&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Error:&lt;br /&gt;
Warning Can&amp;#039;t resolve .param cap=(eo * gap)area)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The quickest way to check a calculation before you commit it to a library &lt;br /&gt;
is to create a section of text within the LT schematic. &lt;br /&gt;
Set the text as LTspice directive (command) , &lt;br /&gt;
then run the schematic &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Finding the measure results of a simulation&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
Check your results in the error log &lt;br /&gt;
Found from the toolbar :&lt;br /&gt;
View/Spice error Log &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Suggestion:&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
Set the Tools/Control panel/ Operation / Generate Expanded Listing &lt;br /&gt;
and tick (yes) to see a more comprehensive output listing - helps with debugging&lt;/div&gt;</summary>
		<author><name>115.128.26.31</name></author>
		
	</entry>
	<entry>
		<id>http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=65</id>
		<title>Hints on using individual LTspice commands and things the Help Manual sometimes may not help you with</title>
		<link rel="alternate" type="text/html" href="http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=65"/>
		<updated>2009-08-10T00:03:08Z</updated>

		<summary type="html">&lt;p&gt;115.128.26.31: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Add items as subpages (rather than details at this page level)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== .Param and Curly Brackets ==&lt;br /&gt;
.param&lt;br /&gt;
&lt;br /&gt;
One of the more confusing aspects of using .param (at least when I began using LT) was where and when do you use the curly barckets {} ?&lt;br /&gt;
&lt;br /&gt;
Beginning with the simplest definition, LT doesn&amp;#039;t require curly brackets &lt;br /&gt;
&lt;br /&gt;
.param res1 = 1000&lt;br /&gt;
&lt;br /&gt;
This could be used to define a resistor of 1000 Ohms &lt;br /&gt;
&lt;br /&gt;
However, in the real world, a parameter sometimes needs to be defined from other parameters.&lt;br /&gt;
&lt;br /&gt;
To get results and not pull errors within LT, it becomes useful to use curly brackets.&lt;br /&gt;
Without them - you can only nest (calculated) .param values, one parameter calculation deep.&lt;br /&gt;
&lt;br /&gt;
Going any deeper (where one calculation depends on another etc) will invite LTspice to complain with an error.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Correct Method  { doesn&amp;#039;t pull errors }&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
*&amp;lt;/nowiki&amp;gt; Comment line : Calculate capacitance&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt; -------------------------------------&lt;br /&gt;
.param length = {3e-2}&lt;br /&gt;
 &lt;br /&gt;
.param width  = {4e-3}&lt;br /&gt;
&lt;br /&gt;
.param area = {length * width}&lt;br /&gt;
&lt;br /&gt;
.param gap = {40e-6}&lt;br /&gt;
&lt;br /&gt;
.param Eo = {8.85e-12}&lt;br /&gt;
&lt;br /&gt;
.param Capa = { (Eo * gap) / area}&lt;br /&gt;
&lt;br /&gt;
.MEAS Capa_  PARAM Capa&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The answer (from the error log ) is:&lt;br /&gt;
capa_: capa=2.95e-012&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To see the results in LTspice &lt;br /&gt;
Use the Error Log (a better name would have been the results log) &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Incorrect method (pulls errors)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
.param length = 3e-2 &lt;br /&gt;
&lt;br /&gt;
.param width  = 4e-3&lt;br /&gt;
&lt;br /&gt;
.param area = length * width&lt;br /&gt;
&lt;br /&gt;
.param gap = 40e-6&lt;br /&gt;
&lt;br /&gt;
.param Eo = 8.85e-12&lt;br /&gt;
&lt;br /&gt;
.param Cap =  (Eo * gap) / area}&lt;br /&gt;
&lt;br /&gt;
.MEAS Capa_  PARAM Capa&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Error:&lt;br /&gt;
Warning Can&amp;#039;t resolve .param cap=(eo * gap)area)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The quickest way to check a calculation before you commit it to a library &lt;br /&gt;
is to create a section of text within the LT schematic. &lt;br /&gt;
Set the text as LTspice directive (command) , &lt;br /&gt;
then run the schematic &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Finding the measure results of a simulation&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
Check your results in the error log &lt;br /&gt;
Found from the toolbar :&lt;br /&gt;
View/Spice error Log &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Suggestion:&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
Set the Tools/Control panel/ Operation / Generate Expanded Listing &lt;br /&gt;
and tick (yes) to see a more comprehensive output listing - helps with debugging&lt;/div&gt;</summary>
		<author><name>115.128.26.31</name></author>
		
	</entry>
	<entry>
		<id>http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=64</id>
		<title>Hints on using individual LTspice commands and things the Help Manual sometimes may not help you with</title>
		<link rel="alternate" type="text/html" href="http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=64"/>
		<updated>2009-08-10T00:02:46Z</updated>

		<summary type="html">&lt;p&gt;115.128.26.31: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Add items as subpages (rather than details at this page level)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== .Param and Curly Brackets ==&lt;br /&gt;
.param&lt;br /&gt;
&lt;br /&gt;
One of the more confusing aspects of using .param (at least when I began using LT) was where and when do you use the curly barckets {} ?&lt;br /&gt;
&lt;br /&gt;
Beginning with the simplest definition, LT doesn&amp;#039;t require curly brackets &lt;br /&gt;
&lt;br /&gt;
.param res1 = 1000&lt;br /&gt;
&lt;br /&gt;
This could be used to define a resistor of 1000 Ohms &lt;br /&gt;
&lt;br /&gt;
However, in the real world, a parameter sometimes needs to be defined from other parameters.&lt;br /&gt;
&lt;br /&gt;
To get results and not pull errors within LT, it becomes useful to use curly brackets.&lt;br /&gt;
Without them - you can only nest (calculated) .param values, one parameter calculation deep.&lt;br /&gt;
&lt;br /&gt;
Going any deeper (where one calculation depends on another etc) will invite LTspice to complain with an error.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Correct Method  { doesn&amp;#039;t pull errors }&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&lt;br /&gt;
*&amp;lt;/nowiki&amp;gt; Comment line : Calculate capacitance&lt;br /&gt;
&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt; -------------------------------------&lt;br /&gt;
.param length = {3e-2}&lt;br /&gt;
 &lt;br /&gt;
.param width  = {4e-3}&lt;br /&gt;
&lt;br /&gt;
.param area = {length * width}&lt;br /&gt;
&lt;br /&gt;
.param gap = {40e-6}&lt;br /&gt;
&lt;br /&gt;
.param Eo = {8.85e-12}&lt;br /&gt;
&lt;br /&gt;
.param Capa = { (Eo * gap) / area}&lt;br /&gt;
&lt;br /&gt;
.MEAS Capa_  PARAM Capa&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The answer (from the error log ) is:&lt;br /&gt;
capa_: capa=2.95e-012&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To see the results in LTspice &lt;br /&gt;
Use the Error Log (a better name would have been the results log) &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Incorrect method (pulls errors)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
.param length = 3e-2 &lt;br /&gt;
&lt;br /&gt;
.param width  = 4e-3&lt;br /&gt;
&lt;br /&gt;
.param area = length * width&lt;br /&gt;
&lt;br /&gt;
.param gap = 40e-6&lt;br /&gt;
&lt;br /&gt;
.param Eo = 8.85e-12&lt;br /&gt;
&lt;br /&gt;
.param Cap =  (Eo * gap) / area}&lt;br /&gt;
&lt;br /&gt;
.MEAS Capa_  PARAM Capa&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Error:&lt;br /&gt;
Warning Can&amp;#039;t resolve .param cap=(eo * gap)area)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The quickest way to check a calculation before you commit it to a library &lt;br /&gt;
is to create a section of text within the LT schematic. &lt;br /&gt;
Set the text as LTspice directive (command) , &lt;br /&gt;
then run the schematic &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Finding the measure results of a simulation&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
Check your results in the error log &lt;br /&gt;
Found from the toolbar :&lt;br /&gt;
View/Spice error Log &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Suggestion:&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
Set the Tools/Control panel/ Operation / Generate Expanded Listing &lt;br /&gt;
and tick (yes) to see a more comprehensive output listing - helps with debugging&lt;/div&gt;</summary>
		<author><name>115.128.26.31</name></author>
		
	</entry>
	<entry>
		<id>http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=63</id>
		<title>Hints on using individual LTspice commands and things the Help Manual sometimes may not help you with</title>
		<link rel="alternate" type="text/html" href="http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=63"/>
		<updated>2009-08-10T00:00:53Z</updated>

		<summary type="html">&lt;p&gt;115.128.26.31: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Add items as subpages (rather than details at this page level)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== .Param and Curly Brackets ==&lt;br /&gt;
.param&lt;br /&gt;
&lt;br /&gt;
One of the more confusing aspects of using .param (at least when I began using LT) was where and when do you use the curly barckets {} ?&lt;br /&gt;
&lt;br /&gt;
Beginning with the simplest definition, LT doesn&amp;#039;t require curly brackets &lt;br /&gt;
&lt;br /&gt;
.param res1 = 1000&lt;br /&gt;
&lt;br /&gt;
This could be used to define a resistor of 1000 Ohms &lt;br /&gt;
&lt;br /&gt;
However, in the real world, a parameter sometimes needs to be defined from other parameters.&lt;br /&gt;
&lt;br /&gt;
To get results and not pull errors within LT, it becomes useful to use curly brackets.&lt;br /&gt;
Without them - you can only nest (calculated) .param values, one parameter calculation deep.&lt;br /&gt;
&lt;br /&gt;
Going any deeper (where one calculation depends on another etc) will invite LTspice to complain with an error.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Correct Method  { doesn&amp;#039;t pull errors }&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
** Comment line : Calculate capacitance&lt;br /&gt;
** -------------------------------------&lt;br /&gt;
.param length = {3e-2}&lt;br /&gt;
 &lt;br /&gt;
.param width  = {4e-3}&lt;br /&gt;
&lt;br /&gt;
.param area = {length * width}&lt;br /&gt;
&lt;br /&gt;
.param gap = {40e-6}&lt;br /&gt;
&lt;br /&gt;
.param Eo = {8.85e-12}&lt;br /&gt;
&lt;br /&gt;
.param Capa = { (Eo * gap) / area}&lt;br /&gt;
&lt;br /&gt;
.MEAS Capa_  PARAM Capa&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The answer (from the error log ) is:&lt;br /&gt;
capa_: capa=2.95e-012&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To see the results in LTspice &lt;br /&gt;
Use the Error Log (a better name would have been the results log) &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Incorrect method (pulls errors)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
.param length = 3e-2 &lt;br /&gt;
&lt;br /&gt;
.param width  = 4e-3&lt;br /&gt;
&lt;br /&gt;
.param area = length * width&lt;br /&gt;
&lt;br /&gt;
.param gap = 40e-6&lt;br /&gt;
&lt;br /&gt;
.param Eo = 8.85e-12&lt;br /&gt;
&lt;br /&gt;
.param Cap =  (Eo * gap) / area}&lt;br /&gt;
&lt;br /&gt;
.MEAS Capa_  PARAM Capa&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Error:&lt;br /&gt;
Warning Can&amp;#039;t resolve .param cap=(eo * gap)area)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The quickest way to check a calculation before you commit it to a library &lt;br /&gt;
is to create a section of text within the LT schematic. &lt;br /&gt;
Set the text as LTspice directive (command) , &lt;br /&gt;
then run the schematic &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Finding the measure results of a simulation&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
Check your results in the error log &lt;br /&gt;
Found from the toolbar :&lt;br /&gt;
View/Spice error Log &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Suggestion:&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
Set the Tools/Control panel/ Operation / Generate Expanded Listing &lt;br /&gt;
and tick (yes) to see a more comprehensive output listing - helps with debugging&lt;/div&gt;</summary>
		<author><name>115.128.26.31</name></author>
		
	</entry>
	<entry>
		<id>http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=62</id>
		<title>Hints on using individual LTspice commands and things the Help Manual sometimes may not help you with</title>
		<link rel="alternate" type="text/html" href="http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=62"/>
		<updated>2009-08-10T00:00:18Z</updated>

		<summary type="html">&lt;p&gt;115.128.26.31: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Add items as subpages (rather than details at this page level)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== .Param and Curly Brackets ==&lt;br /&gt;
.param&lt;br /&gt;
&lt;br /&gt;
One of the more confusing aspects of using .param (at least when I began using LT) was where and when do you use the curly barckets {} ?&lt;br /&gt;
&lt;br /&gt;
Beginning with the simplest definition, LT doesn&amp;#039;t require curly brackets &lt;br /&gt;
&lt;br /&gt;
.param res1 = 1000&lt;br /&gt;
&lt;br /&gt;
This could be used to define a resistor of 1000 Ohms &lt;br /&gt;
&lt;br /&gt;
However, in the real world, a parameter sometimes needs to be defined from other parameters.&lt;br /&gt;
&lt;br /&gt;
To get results and not pull errors within LT, it becomes useful to use curly brackets.&lt;br /&gt;
Without them - you can only nest (calculated) .param values, one parameter calculation deep.&lt;br /&gt;
&lt;br /&gt;
Going any deeper (where one calculation depends on another etc) will invite LTspice to complain with an error.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Correct Method  { doesn&amp;#039;t pull errors }&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Comment line : Calculate capacitance&lt;br /&gt;
* -------------------------------------&lt;br /&gt;
.param length = {3e-2}&lt;br /&gt;
 &lt;br /&gt;
.param width  = {4e-3}&lt;br /&gt;
&lt;br /&gt;
.param area = {length * width}&lt;br /&gt;
&lt;br /&gt;
.param gap = {40e-6}&lt;br /&gt;
&lt;br /&gt;
.param Eo = {8.85e-12}&lt;br /&gt;
&lt;br /&gt;
.param Capa = { (Eo * gap) / area}&lt;br /&gt;
&lt;br /&gt;
.MEAS Capa_  PARAM Capa&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The answer (from the error log ) is:&lt;br /&gt;
capa_: capa=2.95e-012&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To see the results in LTspice &lt;br /&gt;
Use the Error Log (a better name would have been the results log) &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Incorrect method (pulls errors)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
.param length = 3e-2 &lt;br /&gt;
&lt;br /&gt;
.param width  = 4e-3&lt;br /&gt;
&lt;br /&gt;
.param area = length * width&lt;br /&gt;
&lt;br /&gt;
.param gap = 40e-6&lt;br /&gt;
&lt;br /&gt;
.param Eo = 8.85e-12&lt;br /&gt;
&lt;br /&gt;
.param Cap =  (Eo * gap) / area}&lt;br /&gt;
&lt;br /&gt;
.MEAS Capa_  PARAM Capa&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Error:&lt;br /&gt;
Warning Can&amp;#039;t resolve .param cap=(eo * gap)area)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The quickest way to check a calculation before you commit it to a library &lt;br /&gt;
is to create a section of text within the LT schematic. &lt;br /&gt;
Set the text as LTspice directive (command) , &lt;br /&gt;
then run the schematic &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Finding the measure results of a simulation&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
Check your results in the error log &lt;br /&gt;
Found from the toolbar :&lt;br /&gt;
View/Spice error Log &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Suggestion:&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
Set the Tools/Control panel/ Operation / Generate Expanded Listing &lt;br /&gt;
and tick (yes) to see a more comprehensive output listing - helps with debugging&lt;/div&gt;</summary>
		<author><name>115.128.26.31</name></author>
		
	</entry>
	<entry>
		<id>http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=61</id>
		<title>Hints on using individual LTspice commands and things the Help Manual sometimes may not help you with</title>
		<link rel="alternate" type="text/html" href="http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=61"/>
		<updated>2009-08-09T23:39:54Z</updated>

		<summary type="html">&lt;p&gt;115.128.26.31: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Add items as subpages (rather than details at this page level)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== .Param and Curly Brackets ==&lt;br /&gt;
.param&lt;br /&gt;
&lt;br /&gt;
One of the more confusing aspects of using .param (at least when I began using LT) was where and when do you use the curly barckets {} ?&lt;br /&gt;
&lt;br /&gt;
Beginning with the simplest definition, LT doesn&amp;#039;t require curly brackets &lt;br /&gt;
&lt;br /&gt;
.param res1 = 1000&lt;br /&gt;
&lt;br /&gt;
This could be used to define a resistor of 1000 Ohms &lt;br /&gt;
&lt;br /&gt;
However, in the real world, a parameter sometimes needs to be defined from other parameters.&lt;br /&gt;
&lt;br /&gt;
To get results and not pull errors within LT, it becomes useful to use curly brackets.&lt;br /&gt;
Without them - you can only nest (calculated) .param values, one parameter calculation deep.&lt;br /&gt;
&lt;br /&gt;
Going any deeper (where one calculation depends on another etc) will invite LTspice to complain with an error.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Correct Method  { doesn&amp;#039;t pull errors }&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Comment line : Calculate capacitance&lt;br /&gt;
* -------------------------------------&lt;br /&gt;
.param length = {3e-2} &lt;br /&gt;
.param width  = {4e-3}&lt;br /&gt;
.param area = {length * width}&lt;br /&gt;
.param gap = {40e-6}&lt;br /&gt;
.param Eo = {8.85e-12}&lt;br /&gt;
.param Capa = { (Eo * gap) / area}&lt;br /&gt;
.MEAS Capa_  PARAM Capa&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The answer (from the error log ) is:&lt;br /&gt;
capa_: capa=2.95e-012&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To see the results in LTspice &lt;br /&gt;
Use the Error Log (a better name would have been the results log) &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Incorrect method (pulls errors)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
.param length = 3e-2 &lt;br /&gt;
.param width  = 4e-3&lt;br /&gt;
.param area = length * width&lt;br /&gt;
.param gap = 40e-6&lt;br /&gt;
.param Eo = 8.85e-12&lt;br /&gt;
.param Cap =  (Eo * gap) / area}&lt;br /&gt;
.MEAS Capa_  PARAM Capa&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Error:&lt;br /&gt;
Warning Can&amp;#039;t resolve .param cap=(eo * gap)area)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The quickest way to check a calculation before you commit it to a library &lt;br /&gt;
is to create a section of text within the LT schematic. &lt;br /&gt;
Set the text as LTspice directive (command) , &lt;br /&gt;
then run the schematic &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Finding the measure results of a simulation&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
Check your results in the error log &lt;br /&gt;
Found from the toolbar :&lt;br /&gt;
View/Spice error Log &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Suggestion:&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
Set the Tools/Control panel/ Operation / Generate Expanded Listing &lt;br /&gt;
and tick (yes) to see a more comprehensive output listing - helps with debugging&lt;/div&gt;</summary>
		<author><name>115.128.26.31</name></author>
		
	</entry>
	<entry>
		<id>http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=60</id>
		<title>Hints on using individual LTspice commands and things the Help Manual sometimes may not help you with</title>
		<link rel="alternate" type="text/html" href="http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=60"/>
		<updated>2009-08-09T23:38:52Z</updated>

		<summary type="html">&lt;p&gt;115.128.26.31: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Add items as subpages (rather than details at this page level)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== .Param and Curly Brackets ==&lt;/div&gt;</summary>
		<author><name>115.128.26.31</name></author>
		
	</entry>
	<entry>
		<id>http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=59</id>
		<title>Hints on using individual LTspice commands and things the Help Manual sometimes may not help you with</title>
		<link rel="alternate" type="text/html" href="http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=59"/>
		<updated>2009-08-09T23:37:30Z</updated>

		<summary type="html">&lt;p&gt;115.128.26.31: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Add items as subpages (rather than details at this page level)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[.Param and Curly Brackets {} ]&lt;/div&gt;</summary>
		<author><name>115.128.26.31</name></author>
		
	</entry>
	<entry>
		<id>http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=58</id>
		<title>Hints on using individual LTspice commands and things the Help Manual sometimes may not help you with</title>
		<link rel="alternate" type="text/html" href="http://ltwiki.org/index.php?title=Hints_on_using_individual_LTspice_commands_and_things_the_Help_Manual_sometimes_may_not_help_you_with&amp;diff=58"/>
		<updated>2009-08-09T23:37:11Z</updated>

		<summary type="html">&lt;p&gt;115.128.26.31: Created page with &amp;#039; Add items as subpages (rather than details at this page level)   .Param and Curly Brackets {} &amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
Add items as subpages (rather than details at this page level)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[.Param and Curly Brackets {} ]]&lt;/div&gt;</summary>
		<author><name>115.128.26.31</name></author>
		
	</entry>
	<entry>
		<id>http://ltwiki.org/index.php?title=Main_Page&amp;diff=57</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://ltwiki.org/index.php?title=Main_Page&amp;diff=57"/>
		<updated>2009-08-09T23:34:28Z</updated>

		<summary type="html">&lt;p&gt;115.128.26.31: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;&amp;#039;&amp;#039;&amp;#039;Welcome to LT Wiki!&amp;#039;&amp;#039;&amp;#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please use this wiki to create helpful topics related to LTspice.  For complete information about LTspice, please join the Yahoo group at [http://tech.groups.yahoo.com/group/LTspice/].  They are a great user group with a vast amount of helpful files and useful tips.&lt;br /&gt;
&lt;br /&gt;
[[Most frequently asked questions for beginners]]&lt;br /&gt;
&lt;br /&gt;
[[B sources (complete reference)]]&lt;br /&gt;
&lt;br /&gt;
[[B sources (common examples)]]&lt;br /&gt;
&lt;br /&gt;
[[Convergence problems?]]&lt;br /&gt;
&lt;br /&gt;
[[SPICE and LTspice Courseware and Tutorials]]&lt;br /&gt;
&lt;br /&gt;
[[LTspice Hot Keys]]&lt;br /&gt;
&lt;br /&gt;
[[Adding a permanent component to LTspice]]&lt;br /&gt;
&lt;br /&gt;
[[Hints on using individual LTSpice commands and the things the Help Manuals sometimes may not help you with]]&lt;/div&gt;</summary>
		<author><name>115.128.26.31</name></author>
		
	</entry>
	<entry>
		<id>http://ltwiki.org/index.php?title=Hints_on_using_individual_LTSpice_commands_and_the_things_the_Help_Manuals_don%27t_tell_you_about&amp;diff=56</id>
		<title>Hints on using individual LTSpice commands and the things the Help Manuals don&#039;t tell you about</title>
		<link rel="alternate" type="text/html" href="http://ltwiki.org/index.php?title=Hints_on_using_individual_LTSpice_commands_and_the_things_the_Help_Manuals_don%27t_tell_you_about&amp;diff=56"/>
		<updated>2009-08-09T23:33:31Z</updated>

		<summary type="html">&lt;p&gt;115.128.26.31: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;.param&lt;br /&gt;
&lt;br /&gt;
One of the more confusing aspects of using .param (at least when I began using LT) was where and when do you use the curly barckets {} ?&lt;br /&gt;
&lt;br /&gt;
Beginning with the simplest definition, LT doesn&amp;#039;t require curly brackets &lt;br /&gt;
&lt;br /&gt;
.param res1 = 1000&lt;br /&gt;
&lt;br /&gt;
This could be used to define a resistor of 1000 Ohms &lt;br /&gt;
&lt;br /&gt;
However, in the real world, a parameter sometimes needs to be defined from other parameters.&lt;br /&gt;
&lt;br /&gt;
To get results and not pull errors within LT, it becomes useful to use curly brackets.&lt;br /&gt;
Without them - you can only nest (calculated) .param values, one parameter calculation deep.&lt;br /&gt;
&lt;br /&gt;
Going any deeper (where one calculation depends on another etc) will invite LTspice to complain with an error.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Correct Method  { doesn&amp;#039;t pull errors }&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Comment line : Calculate capacitance&lt;br /&gt;
* -------------------------------------&lt;br /&gt;
.param length = {3e-2} &lt;br /&gt;
.param width  = {4e-3}&lt;br /&gt;
.param area = {length * width}&lt;br /&gt;
.param gap = {40e-6}&lt;br /&gt;
.param Eo = {8.85e-12}&lt;br /&gt;
.param Capa = { (Eo * gap) / area}&lt;br /&gt;
.MEAS Capa_  PARAM Capa&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The answer (from the error log ) is:&lt;br /&gt;
capa_: capa=2.95e-012&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To see the results in LTspice &lt;br /&gt;
Use the Error Log (a better name would have been the results log) &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Incorrect method (pulls errors)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
.param length = 3e-2 &lt;br /&gt;
.param width  = 4e-3&lt;br /&gt;
.param area = length * width&lt;br /&gt;
.param gap = 40e-6&lt;br /&gt;
.param Eo = 8.85e-12&lt;br /&gt;
.param Cap =  (Eo * gap) / area}&lt;br /&gt;
.MEAS Capa_  PARAM Capa&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Error:&lt;br /&gt;
Warning Can&amp;#039;t resolve .param cap=(eo * gap)area)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The quickest way to check a calculation before you commit it to a library &lt;br /&gt;
is to create a section of text within the LT schematic. &lt;br /&gt;
Set the text as LTspice directive (command) , &lt;br /&gt;
then run the schematic &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Finding the measure results of a simulation&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
Check your results in the error log &lt;br /&gt;
Found from the toolbar :&lt;br /&gt;
View/Spice error Log &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Suggestion:&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
Set the Tools/Control panel/ Operation / Generate Expanded Listing &lt;br /&gt;
and tick (yes) to see a more comprehensive output listing - helps with debugging&lt;/div&gt;</summary>
		<author><name>115.128.26.31</name></author>
		
	</entry>
	<entry>
		<id>http://ltwiki.org/index.php?title=Hints_on_using_individual_LTSpice_commands_and_the_things_the_Help_Manuals_don%27t_tell_you_about&amp;diff=55</id>
		<title>Hints on using individual LTSpice commands and the things the Help Manuals don&#039;t tell you about</title>
		<link rel="alternate" type="text/html" href="http://ltwiki.org/index.php?title=Hints_on_using_individual_LTSpice_commands_and_the_things_the_Help_Manuals_don%27t_tell_you_about&amp;diff=55"/>
		<updated>2009-08-09T23:29:12Z</updated>

		<summary type="html">&lt;p&gt;115.128.26.31: Created page with &amp;#039;.param  One of the more confusing aspects of using .param (at least when I began using LT) was where and when do you use the curly barckets {} ?  The simplest definition doesn&amp;#039;t …&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;.param&lt;br /&gt;
&lt;br /&gt;
One of the more confusing aspects of using .param (at least when I began using LT) was where and when do you use the curly barckets {} ?&lt;br /&gt;
&lt;br /&gt;
The simplest definition doesn&amp;#039;t require curly brackets &lt;br /&gt;
&lt;br /&gt;
.param res1 = 1000&lt;br /&gt;
&lt;br /&gt;
Which could be used to define a resistor of 1000 Ohms &lt;br /&gt;
&lt;br /&gt;
But sometimes a parameter needs to be defined from other parameters,&lt;br /&gt;
&lt;br /&gt;
Here it becomes more accurate to use curly brackets.&lt;br /&gt;
Without the curly brackets - you can only nest (calculated) param valaues 1 deep&lt;br /&gt;
Going any deeper (one calculation depnds on another etc) LT will pull errors &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Correct Method  { doesn&amp;#039;t pull errors }&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Comment line : Calculate capacitance&lt;br /&gt;
* -------------------------------------&lt;br /&gt;
.param length = {3e-2} &lt;br /&gt;
.param width  = {4e-3}&lt;br /&gt;
.param area = {length * width}&lt;br /&gt;
.param gap = {40e-6}&lt;br /&gt;
.param Eo = {8.85e-12}&lt;br /&gt;
.param Capa = { (Eo * gap) / area}&lt;br /&gt;
.MEAS Capa_  PARAM Capa&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The answer (from the error log ) is:&lt;br /&gt;
capa_: capa=2.95e-012&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To see the results in LTspice &lt;br /&gt;
Use the Error Log (a better name would have been the results log) &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Incorrect method (pulls errors)&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
.param length = 3e-2 &lt;br /&gt;
.param width  = 4e-3&lt;br /&gt;
.param area = length * width&lt;br /&gt;
.param gap = 40e-6&lt;br /&gt;
.param Eo = 8.85e-12&lt;br /&gt;
.param Cap =  (Eo * gap) / area}&lt;br /&gt;
.MEAS Capa_  PARAM Capa&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Error:&lt;br /&gt;
Warning Can&amp;#039;t resolve .param cap=(eo * gap)area)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The quickest way to check a calculation before you commit it to a library &lt;br /&gt;
is to create a section of text within the LT schematic. &lt;br /&gt;
Set the text as LTspice directive (command) , &lt;br /&gt;
then run the schematic &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Finding the measure results of a simulation&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
Check your results in the error log &lt;br /&gt;
Found from the toolbar :&lt;br /&gt;
View/Spice error Log &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Suggestion:&amp;#039;&amp;#039;&amp;#039; &lt;br /&gt;
Set the Tools/Control panel/ Operation / Generate Expanded Listing &lt;br /&gt;
and tick (yes) to see a more comprehensive output listing - helps with debugging&lt;/div&gt;</summary>
		<author><name>115.128.26.31</name></author>
		
	</entry>
	<entry>
		<id>http://ltwiki.org/index.php?title=Main_Page&amp;diff=54</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://ltwiki.org/index.php?title=Main_Page&amp;diff=54"/>
		<updated>2009-08-09T23:00:30Z</updated>

		<summary type="html">&lt;p&gt;115.128.26.31: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;&amp;#039;&amp;#039;&amp;#039;Welcome to LT Wiki!&amp;#039;&amp;#039;&amp;#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Please use this wiki to create helpful topics related to LTspice.  For complete information about LTspice, please join the Yahoo group at [http://tech.groups.yahoo.com/group/LTspice/].  They are a great user group with a vast amount of helpful files and useful tips.&lt;br /&gt;
&lt;br /&gt;
[[Most frequently asked questions for beginners]]&lt;br /&gt;
&lt;br /&gt;
[[B sources (complete reference)]]&lt;br /&gt;
&lt;br /&gt;
[[B sources (common examples)]]&lt;br /&gt;
&lt;br /&gt;
[[Convergence problems?]]&lt;br /&gt;
&lt;br /&gt;
[[SPICE and LTspice Courseware and Tutorials]]&lt;br /&gt;
&lt;br /&gt;
[[LTspice Hot Keys]]&lt;br /&gt;
&lt;br /&gt;
[[Adding a permanent component to LTspice]]&lt;br /&gt;
&lt;br /&gt;
[[Hints on using individual LTSpice commands and the things the Help Manuals don&amp;#039;t tell you about]]&lt;/div&gt;</summary>
		<author><name>115.128.26.31</name></author>
		
	</entry>
</feed>