<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2900.2838" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#d0cab7>
<DIV><FONT face=Arial size=2>I've completed several builds but haven't produced 
oscillation from a 2d&nbsp;(orthagonal)&nbsp;mesh.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Consider a non-optimised elementary build using a 
2d array for the current sample, and a 2d array for the previous 
sample.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>On each sample, all current samples are passed to 
the previous sample array as such:</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>for (x=0; x &lt;&nbsp;NX - 1; x++) {</FONT></DIV>
<DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp; for (y=0; y &lt;&nbsp;NY - 1; 
y++) {</FONT></DIV>
<DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 
lastSample[x][y] = currentSample[x][y];</FONT></DIV>
<DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp; }</FONT></DIV>
<DIV><FONT face=Arial size=2>}</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>The computation for each sample then sums the four 
adjacent&nbsp;lastSample[][] values for each junction and divides by two (Not as 
efficient as using the &amp; 1 flipflop, this form is&nbsp;only&nbsp;for 
comprehension). Reflection at&nbsp;boundary cells is also 
performed.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Without making any improvements, my experience with 
other waveguide systems says that "there should be some oscillation if there is 
reflection at the boundaries," i think i've&nbsp;attempted this four times over 
the last few years, and even implementing the STK version variable for variable 
(sans the filter which&nbsp;I assume is highpass and reflection)&nbsp;I'm 
producing an exponential DC output.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Rurik.</FONT><FONT face=Arial size=2><BR><A 
href="http://www.xoxos.net">http://www.xoxos.net</A></FONT></DIV></BODY></HTML>