Héctor here, your AFM expert at Nanosurf calling out for people to share their Friday afternoon experiments. Today I use acoustic waves to excite an AFM probe (and show a little bit of coding and automatization along the way). (Thanks David, Daniel, Paul and Pieter for your patience).
People have used all sorts of things to excite cantilevers to do AFM, piezo shakers attached to the probe, piezo attached to the sample and the probe in contact with the sample, photothermal excitation, autoexcitation using piezoelectric cantilevers, electromagnetic coils and magnetic probes... So, why not using acoustic waves? In other words, why not produce noise with a speaker somewhere far away from the probe and sample, at the resonance frequency of the cantilever, and use that as excitation for imaging? (See Ref 1, and if you need a refresher on AFM theory, see our AFM theory section).
So this is how I did it. I generated a pure tone with my mobile phone and used the AFM hardware and software to detect the vibration and track the surface sample while the probe oscillates.
Software-wise everything is controlled using Python. Python sends commands to the AFM using the Nanosurf python library (see more on the scripting interface here), and on the mobile phone side I used an app called phyphox.
Phyphox is a tool to turn your phone in a short of mini laboratory. It lets you get access to sensors, perform acoustic experiments... and lets you record the measurements. It also allows a web interface if you are on the same network, which allows you to see and control the app on your computer browser, and also, using AJAX and JASO, it provides a remote interface to control the app using scripts.
The Nanosurf Python interface lets you control the AFM like if you were using it, and if you use the low level scripting, it lets you get access to all shorts of additional signals and even reroute things.
This is the algorithm to sweep the frequency on the phone and read the oscillation amplitude from the AFM.
#Tone generator part# from urllib.request import urlopen import time PP_ADDRESS = "http://172.28.43.79:8080/" #This address you have to change it and input what the mobile phone tells you. url = PP_ADDRESS + "control?cmd=start" response = urlopen(url) #Tells phyphox to start playing a sound. #url = PP_ADDRESS + "config?" #Not really needed, it is here for debbuging. #response = urlopen(url) #AFM setup part# import nanosurf as nsf spm = nsf.SPM() ll = spm.lowlevel application = spm.application opmode = application.OperatingMode #Here I'm basically defining sa1 as the main lock-in in the AFM. We will read amplitude values from it sa1 = ll.SignalAnalyzer(ll.SignalAnalyzer.Instance.INST1) #We want the amplitude of the exciting piezo shaker to be zero. opmode.VibratingAmpl=0 #Sweep frequency, collect data and plot# import numpy as np import matplotlib.pyplot as plot index=0 freqstart=100 freqend=24000 freqstep=100 steps=int((freqend-freqstart)/freqstep) freq=np.zeros(steps) amplitude=np.zeros(steps) for k in range(100,24000,100): #We put a new frequency on the lock-in and on the phone. opmode.VibratingFreq = k url = PP_ADDRESS + "control?cmd=set&buffer=f&value="+str(k) response = urlopen(url) freq[index]=k #We interrogate the lock-in to see the current amplitude amplitude[index]=sa1.current_amplitude.value print(f"sa1.current_amplitude.value: {amplitude[index]}") index=index+1 time.sleep(0.05) #After finishing, we plot the results. plot.plot(freq, amplitude) plot.show()
The result when I run the code was something very similar to the frequency sweep obtained using the piezo shaker. Although I have to admit that it is several orders of magnitude lower.
So, now for the real test. Can we actually capture images in Dynamic mode using this method of probe excitation?
This is the algorithm.
#Manual setpoint adjustment in V instead of percentage import nanosurf spm = nanosurf.SPM() ll = spm.lowlevel z_controller = ll.ZControllerEx() z_controller.set_point.value=0.0002
and this is the result:
A little bit technical today, but I hope those that love to tinker with the AFM will appreciate this and find it useful as a reference for further tinkering.
If you have suggestions or requests, don't hesitate to contact me.
References:
1 Mokrane Boudaoud, Yassine Haddab, Yann Le Gorrec, Philippe Lutz; Study of thermal and acoustic noise interferences in low stiffness atomic force microscope cantilevers and characterization of their dynamic properties. Rev. Sci. Instrum. 1 January 2012; 83 (1):013704. https://doi.org/10.1063/1.3673637