Saturday, December 07, 2013

Will 2-D Tin Be the Next Super Material?


                             A single layer of tin atoms could be the world's first material to conduct electricity with 100 percent efficiency at the temperatures that computer chips operate, according to a team of theoretical physicists led by researchers from the U.S. Department of Energy's (DOE) SLAC National Accelerator Laboratory and Stanford University.

Researchers call the new material "stanene," combining the Latin name for tin (stannum) with the suffix used in graphene, another single-layer material whose novel electrical properties hold promise for a wide range of applications.

"Stanene could increase the speed and lower the power needs of future generations of computer chips, if our prediction is confirmed by experiments that are underway in several laboratories around the world," said the team leader, Shoucheng Zhang, a physics professor at Stanford and the Stanford Institute for Materials and Energy Sciences (SIMES), a joint institute with SLAC. The team’s work was published recently in Physical Review Letters.


Photo - tin can and piece of scrap tin sitting on a periodic table of elements with tin "Sn" highlighted
A single layer of tin – an element familiar as the coating for tin cans – could be the world’s first material to conduct electricity with 100 percent efficiency at the temperatures that computer chips operate. If used as wiring in computer chips, the material, called "stanene," could increase the speed and lower the power needs of future generations of computers. (Brad Plummer/SLAC)


 Image - grid of atoms, see caption
Adding fluorine atoms (yellow) to a single layer of tin atoms (grey) should allow a predicted new material, stanene, to conduct electricity perfectly along its edges (blue and red arrows) at temperatures up to 100 degrees Celsius (212 Fahrenheit). (Yong Xu/Tsinghua University; Greg Stewart/SLAC)


The Path to Stanene

For the past decade, Zhang and colleagues have been calculating and predicting the electronic properties of a special class of materials known as topological insulators, which conduct electricity only on their outside edges or surfaces and not through their interiors. When topological insulators are just one atom thick, their edges conduct electricity with 100 percent efficiency. These unusual properties result from complex interactions between the electrons and nuclei of heavy atoms in the materials.

“The magic of topological insulators is that by their very nature, they force electrons to move in defined lanes without any speed limit, like the German autobahn,” Zhang said. “As long as they’re on the freeway – the edges or surfaces – the electrons will travel without resistance.”

In 2006 and 2009, Zhang’s group predicted that mercury telluride and several combinations of bismuth, antimony, selenium and tellurium should be topological insulators, and they were soon proven right in experiments performed by others. But none of those materials is a perfect conductor of electricity at room temperature, limiting their potential for commercial applications.

Earlier this year, visiting scientist Yong Xu, who is now at Tsinghua University in Beijing, collaborated with Zhang’s group to consider the properties of a single layer of pure tin.

“We knew we should be looking at elements in the lower-right portion of the periodic table,” Xu said. “All previous topological insulators have involved the heavy and electron-rich elements located there.”
Their calculations indicated that a single layer of tin would be a topological insulator at and above room temperature, and that adding fluorine atoms to the tin would extend its operating range to at least 100 degrees Celsius (212 degrees Fahrenheit).

Ultimately a Substitute for Silicon?

Zhang said the first application for this stanene-fluorine combination could be in wiring that connects the many sections of a microprocessor, allowing electrons to flow as freely as cars on a highway. Traffic congestion would still occur at on- and off-ramps made of conventional conductors, he said. But stanene wiring should significantly reduce the power consumption and heat production of microprocessors.
Manufacturing challenges include ensuring that only a single layer of tin is deposited and keeping that single layer intact during high-temperature chip-making processes.

“Eventually, we can imagine stanene being used for many more circuit structures, including replacing silicon in the hearts of transistors,” Zhang said. “Someday we might even call this area Tin Valley rather than Silicon Valley.”

Additional contributors included researchers from Tsinghua University in Beijing and the Max Planck Institute for Chemical Physics of Solids in Dresden, Germany. The research was supported by the Mesodynamic Architectures program of the Defense Advanced Research Projects Agency.



Tuesday, November 19, 2013

HOW TO UNLOCK ANDROID MOBILE

How to reset your pattern unlock data on your android phone or tablet using PC via ADB (android debug bridge)


This method will only work if and only if you have previously enabled "USB debug mode" in your device, prior to an actual lock out due to forgotten password or screen pattern.
  1. 1
    Install Android SDK.
    Download android SDK from www.developer.android.com/sdk/index.html.
  2. 2
    Extract.
    After downloading the file, do not open it, but instead extract the content to a folder in the root of your drive C. Rename the folder to android-sdk.
  3. 3
    USB Driver.
    Download the necessary USB driver for your tablet. If you have difficulty in obtaining the right USB driver for your device, you could use an Android management tool like "Moborabo." This application was originally intended for smartphones, but will also work for Android tablets.
  4. 4
    Connect your tablet.
    Connect your Android tablet to your computer using the provided USB cable. Make sure that the device is detected by your computer.
  5. 5
    Open command prompt.
    Type "Win+R." This will open the run command window on your desktop. Type "cmd" on the space provided.


  6. 6
    Go to the adb directory by typing the following commands on the command prompt window:
     
    1. cd\
    2. cd android-sdk\platform-tools\


  7. 7
    Check that you device is recognized by typing the adb command to list the devices connected to your computer.
    This should display the serial number of the device(s).  
    1. adb devices


  8. 8
    Type the adb command to wipe the user data on your android device:
     
    1. adb shell
    2. rm /data/system/gesture.key
    3. Restart your device
    4. Start the adb shell again
    5. cd /data/data/com.android.providers.setting­s/databases
    6. sqlite3 settings.db
    7. update system set value=0 where name=’lock_pattern_autolock’;
    8. update system set value=0 where name=’lockscreen.lockedoutpermanently’;
    9. quit
    10. Restart -- Your phone should now allow you to enter a new pattern unlock. If not continue on to the next step.
    11. If it does not you can go into adb shell again and type wipe data. WARNING: ALL DATA ON YOUR PHONE WILL BE LOST. Since this method will cause your data to be lost anyway, you might as well do a full factory reset instead. However for completeness this solution documented here.
    12. Depending on the amount of data on your Android tablet, this may take some time. Just wait until you see the message "Done wiping/data." Your Android tablet will be restored to factory default after this process.
  9. 9
    Close the command prompt window.
  10. 10
    You can now remove your Android tablet from the computer and restart the device.
The Last resort
  • If your Android Device is unable to connect to the Internet while locked, then unfortunately you have lost access to your device. You will need to perform a full factory reset of the device.