====== Software ====== ====OSU licensed==== OSU has site licenses for some useful applications * [[Matlab]] (an alternative to Matlab is Python running NumPy and SciPy, see open source software below) * Mathematica * Labview * Autocad * Endnote (note that [[http://www.zotero.org/|Zotero]] is free and has some similar features, ask Landon) * Microsoft Office (includes a [[http://tss.oregonstate.edu/softdist/Microsoft/homeuse/|home use agreement]] that allows faculty and grads to get a $10 package for a home computer) A full list is available at http://tss.oregonstate.edu/softdist/ ====Open Source Software==== Python 2.X has been used to create an open source version of MatLab. The key to getting Python to act like MatLab is to - Download and Install Python 2.X - Download and Install the appropriate version of NumPy (it will automatically detect Python) - Download and Install the appropriate version of SciPy (it will automatically detect Python) Use of Python 3.X is also becoming more widespread. NumPy and SciPy packages are also available for Python 3.X. Quantum Espresso is a popular Materials Simulation platform. One easy way to try it out on Windows is to download this [[https://www.materialscloud.org/work/quantum-mobile|virtual machine]] and run it using [[https://www.virtualbox.org/|Virtual Box]]. Further directions on using quantum espresso can be found on their [[https://www.quantum-espresso.org/|website]]. Numerous tutorials are available there. Tutorials: *[[Python|Simple example]] *http://cutter.rexx.com/~dkuhlman/scipy_course_01.html#arrays-and-array-operations *http://www.tramy.us/numpybook.pdf ====Lab software==== In the lab we also use *[[Igor]] *Origin *[[designcad_hints|DesignCAD]] *[[Excel]] (useful for tracking processing of wafers and devices, keeping budgets etc.) ==== Physics Department Software ==== * [[Comsol]] * [[Drupal]] ==== OSU Virtual Lab Software ==== With you ONID account you can run programs over the internet, for example *Mathematica *Photoshop [[http://oregonstate.edu/is/mediaservices/scf/virtual-lab|Instructions]] for getting the client program called "umbrella". ==== Off-campus journal access ==== **Method 1:** Simple web browsing Web of Science - Search for an article http://apps.webofknowledge.com.ezproxy.proxy.library.oregonstate.edu **Method 2:** VPN. If you install and run the VPN, your computer will act like it is on campus and you can access papers and OSU resources like normal. I have always used the "alternative method/legacy" version where you download an actual program. http://oregonstate.edu/helpdocs/network-and-phone/virtual-private-network-vpn **Method 3:** If you copy paste '.ezproxy.proxy.library.oregonstate.edu' after the .com part of a journal website, it will be accessed through Oregon State proxy servers. I have created a 'bookmark' javascript that will (attempt) to do this automatically. Create a web bookmark and copy the following where the web address goes. Then click it when on a journal article you want to access. Very convenient, when it works. I actually ended up using this most of the time. It only works for .com and .org articles at the moment, but if you look at the code it shouldn't be too hard to extend to other extensions. javascript:(function stream() {var s = window.location.href ;var loc = (s.search(".com") + 4); if(loc== 3) {loc = (s.search(".org") + 4);} var beg = s.slice(0,loc);var end = s.slice(loc); window.location.href = (beg + '.ezproxy.proxy.library.oregonstate.edu' +end); })();