by admin | Jun 5, 2015 | sem1
Lambert Beer Law The Absorbance of a solution For each wavelength of light passing through the spectrometer, the intensity of the light passing through the reference cell is measured. This is usually referred to as Io – that’s I for Intensity. The...
by admin | Jun 5, 2015 | sem1
Stark Einstein law Stark Einstein law The Stark Einstein law is named after German-born physicists Johannes Stark and Albert Einstein, who independently formulated the law between 1908 and 1913. It is also known as the photochemical equivalence law or photoequivalence...
by admin | Jun 5, 2015 | sem1
Grotthus-Draper law The Grotthus–Draper law (also called the Principle of Photochemical Activation) states that only that light which is absorbed by a system can bring about a photochemical change. Materials such as dyes and phosphors must be able to absorb...
by admin | Jun 5, 2015 | sem1
Laws of Photochemistry The study of chemical reactions, isomerizations and physical behavior that may occur under the influence of visible and/or ultraviolet light is called Photochemistry. Two fundamental principles are the foundation for understanding photochemical...
by admin | Jun 5, 2015 | sem3
Splay tree in c++ #include <iostream.h> #include “SplayTree.h” /** * Construct the tree. */ template <class Comparable> SplayTree<Comparable>::SplayTree( const Comparable & notFound ) : ITEM_NOT_FOUND( notFound ) { nullNode =...
by admin | Jun 5, 2015 | sem3
Red black Tree in c++Red black tree in c++ are an evolution of binary search trees that aim to keep the tree balanced without affecting the complexity of the primitive operations. It is done by colouring each node in the tree with either red or black and preserving a...