Skip to main content

Spin Coating Technique for Thick Film Coatings

 Spin coating technique is used for depositing uniform thick film (electrode) onto substrate (electrolyte).

1.The process begins by preparing the “vehicle”, which consists of a mixture of 95% terpineol oil and 5% ethyl cellulose.

2.For the electrode ink, use 0.2 ml of the prepared “vehicle” vigorously mixed with 140 mg of electrode powder (perovskite oxide) in an agate mortar until a dense ink is obtained.

3.Next, a sintered electrolyte pellet is placed onto the spin coater, and a small amount of the ink with the help of spatula is applied statically to one side of the pellet.

4.The spin coater is then operated at a speed of 6000 RPM for 30 seconds to evenly spread the ink across the surface.

5.After spinning, the coated pellet is dried in an oven at 105 °C for 20 minutes.

6.This process is repeated three times, resulting in three layers of electrode ink being applied to one side of the electrolyte pellet.

7.Finally, the coated pellet undergoes sintering at 950°C for 2 hours.

Three rounds of spin coating result in a 60 µm thick electrode.

It is important to note that the sintering temperature and duration, the spin coater's speed and time, and the quantities of electrode powder and vehicle can be optimized based on the specific materials used. This optimization ensures the best possible performance and quality of the thick film.

Comments

Popular posts from this blog

Jeeto Pakistan Show Essay

Jeeto Pakistan Jeeto Pakistan is a popular and successful show  world wide. It is on aired twice a weak; on Friday and Sunday 11 month of the year and daily during Ramadan. It was started 4 years ago during Ramadan and it is hosted by Pakistan’s celebrity of showbiz industry Fahad Mustafa. Fahad Mostafa is youngest celebrity of Pakistan and he is hosting this show from the very first day till now. He has also done work in many drama serials and movies, his recent famous movie was Actor in Law. Jeeto Pakistan show is on aired at ARY channel in evening from 19:30 to 22:30. It is totally a commercial show which is sponsored by different companies like Q. Mobilejk , Sogo, Qarshi and many other companies. This show includes many segments and each segment offers different prizes like bikes, cars, gold, ummrah tickets, commercial plots and many other appliances are distributed among people. People are selected for this show by Lucky Draw and one can be selected by doing shopping of ...

Area Calculation By ImageJ

  Area Calculation By ImageJ      Open the Software      File => Open       Zoom in the Image and select the straight line        Mark the small line on graph and go to analyse => set scale      Set known distance 01, unit cm and click ok       Go to free hand and cover the area you want to calculate       Then press (ctrl + m) repeat the process for 3 time       After that go to the result and summarize 

Weight conversion program using functions in c++

#include<iostream> using namespace std; int num(int n) { cout<<"num of chocolate:"; cin>>n; return n; } int ounce(int a) { cout<<"weight in ounce:"; cin>>a; return a; } int pound(int b) { cout<<"weight in pound:"; cin>>b; return b; } int main () { int n, a, b; char choice; cout<<"enter choice 'o' for ounce and 'p' for pounds:"; cin>>choice; int x, y, z; x = num(n); y = ounce(a); z = pound(b); if (choice == 'o') {cout<<"total weight in ounce:"<<x*y;} if (choice == 'p') {cout<<"total weight in pounds:"<<x*z;} return 0; } ************************** Output: