
/***************************************************************************
*  This script sets resistor values in the subcircuits, runs transient
*  and saves traces into transient data file
*
*  To run the script:
*
*      drag and drop this file onto NL5 icon, 
*  or
*      open NL5
*      open script window (Tools/Script)
*      open script file script1.txt
*      run script
*  or
*      start NL5 from command line with "script6.txt" as a parameter	 
*
***************************************************************************/


open x_b2.nl5;		// Open schematic file x_b2.nl5
x1.r1=1; 		// Set new resistor values in the subcircuits
x2.r1=3;
x3.r1=10;
tran; 			// Run transient
savedata x_b2; 		// Save traces into transient data file x_b2.nlt
