Finals and graduation are over. Summer work has begun. And I am intent on making the most of this summer. With some hard work research will be completed and the project will be ready for publication by the end of the summer. In addition, I have been using my new found CSS and HTML skills to design and add a new section for my website. I expect to have the updates live by the end of the week, but with storms interrupting power and Internet service and classes starting Wednesday it could be delayed.
Bookshelf Breakdown
My life as judged by my bookshelf.
Optics Project
With finals done and summer school not starting till next Monday I have time write. One of the final projects I had for this school year was an optics project. Stuart, Abbey, and I worked on measuring the interference/diffraction patterns of 1, 2, 3, 4, and 5 slit apertures. For our setup we used a Helium-Neon laser and slits with .04 mm and slit spacing of .125 mm. The goal of the project was demonstrate subsidiary peaks for the 3, 4, and 5 slit interference pattern. The results were not as spectacular as I had hopped but they were also not bad. We measured the light intensity versus displacement in the plane orthogonal to the laser beam. We were able to measure displacement to the nearest .1 mm. The separation between the slit and the plane of the screen is about half a meter. Even with this resolution the subsidiary peaks were barely visible. The resolution of the sensors cannot be increased, but the interference can be clarified. Increasing the spacing between the slit and the screen would spread out the pattern and allow the subsidiary peaks to be more visible. The project was a great learning experience. I was able to see that the theoretical interference pattern we predicted in class were real and easily observable with the right equipment.
Last night
Today is my last night as a math Lab tutor. Saturday is my last day as a Physics supplemental Instructor. over the last two years I have worked for the achievement center in a variety of positions. I have taught a lot, and learned even more. I enjoy the experience of teaching, the moments when students' faces light up in a moment comprehension, and the feeling of accomplishment after hearing a student say, "ohhh.... now I get it". I'm excited to see what new challenges the coming semesters will bring.
Regular Dilemmas
The most exciting part of trying something new is the unexpected. I started work on step four of my process(copy file0.inp to file1.inp) and encountered an unexpected puzzle. The puzzle was how to increment a number embedded in a string. I as a human I can recognize the three parts of the name file0.inp. Any human can see that they are file, 0, and .inp. The trick was turning this intuition into an algorithm. I did some quick googling and found an algorithm that did exactly what I wanted. The algorithm relied on regular expression matching. I was familiar with the concept of regular expression matching as a super extension of scanf. Even though I had an algorithm that worked I wanted to make sure I at least understood the basics of regular expressions. The long and short of it was that I spent 2 hours writing a "simple program" that copied one file to another. But I also learned basic python regular expression syntax (more on that latter). Now the next time I write code like this it won't even take me two minutes. I also see potential for using regular expressions on some of the other steps of the process.