Advertisement
Guest User

Untitled

a guest
Mar 26th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1.  
  2. # *************************************************************************** #
  3. # #
  4. # --- <<< RESISTOR >>> --- #
  5. # #
  6. # *************************************************************************** #
  7.  
  8. # ///////////////////////////// PROCESS HEADER \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
  9.  
  10. # ----- Initial Grid. -----------------
  11.  
  12. line x loc= 0.0 tag=Top spacing=@GridStp@
  13. line x loc= 1.0 tag=Bottom spacing=@GridStp@
  14. line y loc= 0.0 tag=Left spacing=@GridStp@
  15. line y loc= 3.0 tag=Right spacing=@GridStp@
  16.  
  17. # ----- Substrate. -------------------- \\
  18.  
  19. region Silicon xlo=Top xhi=Bottom ylo=Left yhi=Right
  20.  
  21. init field=@Dopant@ resistivity=@Resistivity@ \
  22. wafer.orient=100 slice.angle=-90
  23.  
  24. # /////////////////////////////// END HEADER \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
  25.  
  26. # ///////////////////////////////// PROCESS \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
  27.  
  28. # 1) ----- Aluminum Deposition. ---------------------------------------------
  29.  
  30. mask name=Al segments= { 1 2 }
  31. deposit Aluminum thickness=0.1 mask=Al anisotropic
  32.  
  33. # ----- Defining Contacts. ------------
  34.  
  35. contact box xlo=-0.2 xhi=0.0 ylo=0.0 yhi=1.0 \
  36. name=Anode Aluminum
  37. contact box xlo=-0.2 xhi=0.0 ylo=2.0 yhi=3.0 \
  38. name=Cathode Aluminum
  39.  
  40.  
  41. # ----- Saving Structure. -------------
  42.  
  43. diffuse temperature=1000 time=0
  44. struct smesh=n@node@
  45.  
  46. # ----- RS Measuring. -----------------
  47.  
  48. SheetResistance y=2.5
  49.  
  50. # \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ THE END ///////////////////////////////////
  51.  
  52. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement