Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
public:calculator:guides:dm15l_miso_solve [06/08/22 13:29 BST] – [Example : OHMS LAW] johnpublic:calculator:guides:dm15l_miso_solve [04/02/26 09:12 GMT] (current) – [Example : Nano-VNA TDR settings] john
Line 2: Line 2:
  
  
-====== DM15L "Miso" Solve ======+====== DM15L "Multi In Single Out" Solve ======
  
 ** Using multi-variable equations in SOLVE ** ** Using multi-variable equations in SOLVE **
Line 31: Line 31:
 This procedure utilizes indirect storage to make the RPN program more flexible. SOLVE and INTEG feed the each value of the floating variable as input to the user program, which immediately stores the value indirectly to its user-chosen register. Each variable in the function is then recalled for use in calculations, so the user program need not be structured to receive any particular variable from the stack. This procedure utilizes indirect storage to make the RPN program more flexible. SOLVE and INTEG feed the each value of the floating variable as input to the user program, which immediately stores the value indirectly to its user-chosen register. Each variable in the function is then recalled for use in calculations, so the user program need not be structured to receive any particular variable from the stack.
  
-<cite> 
-[[https://www.hpmuseum.org/cgi-sys/cgiwrap/hpmuseum/articles.cgi?read=556]] 
-</cite> 
  
-</QUOTE> 
  
 <code> <code>
Line 132: Line 128:
  
 </code> </code>
 +
 +<cite>
 +[[https://www.hpmuseum.org/cgi-sys/cgiwrap/hpmuseum/articles.cgi?read=556]]
 +</cite>
 +
 +</QUOTE>
  
 ===== Example : OHMS LAW ===== ===== Example : OHMS LAW =====
Line 166: Line 168:
  
 </QUOTE> </QUOTE>
 +
 +==== Example : Nano-VNA TDR settings ====
 +
 +'' F = (Points^2 x v.f x 0.284 ) / distance ''
 +
 +  * Points -> R01
 +  * Distance -> R02
 +  * V.F -> R03
 +  * Frequency -> R04
 +
 +
 +<code>
 +
 +LBL 71
 +Sto(i)
 +RCL 01
 +x^2
 +RCL* 03
 +0.284
 +*
 +RCL/ 02
 +RCL- 04
 +RTN
 +
 +</code>
 +
 +=== Example ===
 +
 +Find the Frequency sweep width needed for a distance of 35m with the following settings:
 +
 +  * Distance = 35m
 +  * Points = 101
 +  * V.F = 0.66
 +
 +<code>
 +
 +101 STO01
 +35 STO02
 +.66 STO03
 +4 STO I
 +solve 71
 +
 +</code>
 +
 +Result = ''54.63MHz''
 +
  
  

Navigation