Skip to content

ocatias/LCMC_Sim

Repository files navigation

This project is split into two parts. One part has the simulation (and jupyter notebooks) while the other part has the visualisation of the liquid crystal.

A Monte Carlo Simulation of Biaxaial Liquid Crystals in Confinement

Liquid crystals are made out of many particles that can move and interact with each other. For the purpose of this simulation, these particles will be hard board-like particles (HPBs) this means that they basicly have the form of cuboids and cannot overlap. These particles are placed inside a system with hard walls; with the help of the Metropolis Monte Carlo method we then try to find equilibrium states and analyse the emerging patterns. The simulation is written in C++ and uses the Eigen Library to calculate eigenvectors and eigenvalues. The visualisation is done in the Unity game engine (it also uses the Unity Standalone File Browser). Finally, some Jupyter Notebooks were used to analyse the results.

Getting Started

Download the project and compile the simulation which is in the LCMC.cc file

g++ -std=c++1z LCMC.cc vector3d.h vector3d.cc box.h box.cc BoxCollision.h BoxCollision.cc RandomMove.h RandomMove.cc Statistics.h Statistics.cc -o lcmcsim.out

You can then start a simulation with

 ./lcmcsim.out output_filename particle_length particle_height density  confinement_geometry confinement_paramater1 confinement_parameter2 
  • output_filename: The program will save the results in a file with this name
  • density: The density of the system (the total volume of the particles divided by the volume of th system), has to be a number between 0 and 1
  • confinement_geometry: A number that corresponds to the confinement
  • confinement_paramater: Parameters that define the size of your confinement

The possibilities for confinements and their parameters are:

  1. Cylinder (radius, height)
  2. Cube (length)
  3. Sphere (radius)
  4. Half Sphere (radius)

For example the following command starts a simulation inside a cylinder with radius 12, height 10 and a density of 0.20. The particles have a length of 2 and a height of 3

./lcmcsim.out test_cylinder 2 3 0.20 0 12 10

Note: you can change a lot of important parameters (like the number of timesteps) in the LCMC.cc file.

If you want to take a look at your simulation results, you can use this program.

Examples

Releases

No releases published

Packages

No packages published