Photonics

Photonics

How to add Au particle over the moth eye surface?

    • yeasinarafat-2018726167
      Subscriber
      I'm trying to add gold nanoparticles over a moth eye shaped surface just like the picture below for my solar cell simulation. But i can't find a way out to do so. Can anyone help me please?Broadband light absorption by metal nanoparticle or quantum dot-coated silicon nanostructures for solar cell applications
    • Guilin Sun
      Ansys Employee

      This is a little tedious but you can do it:

      you know the center locations for each nano particle, and know the radius, you can use script to add them. eg

      1: specify the center xyz coordinates 
      2: write a loop or nested loop, eg
      for (n=1:10){

      addsphere;
      set("x",x(n));
      set("y",y(n));
      set("z",z(n));
      }
      3: since they have the same radius and material, you  can use
      selectall;
      set("radius",radius);
      set("material","Au (Gold) - CRC");

      You could optimize the location parameters to use few loops in some cases. You know the triangle slope so it can be easy to find an analytical solution.

      The script can be inside a structure group, or independent. It may need trial and error but I am sure you can do it by your own. Please refer some structure groups  in the object library.


      PS: usually you would not include the air/Si interface inside the simulation region. otherwise it will beed large simulation volume and long simulation time, except the Sillicon is only a few um thick.

Viewing 1 reply thread
  • You must be logged in to reply to this topic.