Statistical: Plot Partition function & other thermodynamic variables (U, dU, Cv, F, S) - Part-2

Поделиться
HTML-код
  • Опубликовано: 3 фев 2025
  • In this video, Partition function for the systems with finite energy levels and finite no. of non interacting particles is calculated and plotted using Bose Einstein and Fermi-Dirac distribution. Using partition function, other thermodynamic variables like internal energy, energy fluctuation, Helmholtz free energy, specific heat and entropy are calculated and plotted with temperature for different no. of particles in SCILAB software.

Комментарии • 11

  • @flashbang8253
    @flashbang8253 Год назад +1

    Hello sir !
    Is the formula correct for Bose-Einstein statistics ?
    for j = 1:length(T)
    b = -e/(Kb*T(j));
    lz = 0
    for i=1:nl
    lz = lz + log(1-exp(b*((i-1)*dE-u)))
    end
    logz(j) = lz
    z(j) = exp(lz)
    end

  • @arkachaudhuri4028
    @arkachaudhuri4028 2 года назад

    Can u please write the same program in Python or kindly tell how to write it in Python.

  • @spdas5942
    @spdas5942 3 года назад

    Sir, more examples on the three partition functions ,please .

  • @pranjalibhattacharjee4321
    @pranjalibhattacharjee4321 3 года назад

    Sir for the Grand Cannonical partition function of BE statistics, can you tell me what values should I take? I've been trying using various values but nothings seems to work out

    • @practicalhope5408
      @practicalhope5408  3 года назад +1

      Just change the formula for partition function. If still u r not getting tell me what values do you need

    • @pranjalibhattacharjee4321
      @pranjalibhattacharjee4321 3 года назад

      @@practicalhope5408 I had changed the partition function. But the desired graph didn't come

    • @practicalhope5408
      @practicalhope5408  3 года назад +1

      @@pranjalibhattacharjee4321 u can send your program and curves at vbhaskerraj@gmail.com
      I will check whenever I am free

    • @pranjalibhattacharjee4321
      @pranjalibhattacharjee4321 3 года назад

      @@practicalhope5408 okay!

  • @gauri5601
    @gauri5601 3 года назад

    SIR PLEASE HELP ME. Write a Scilab code to draw a two-dimensional random walk from the dice rolls...plz make a coding of this question..i too much work on it but unfortunetly ,i always found error in it plzz sir help me

    • @practicalhope5408
      @practicalhope5408  3 года назад

      //positive random walk depending upon the value of dice
      clc;clear;clf;
      x(1)=0;y(1)=0;s=1:100;
      for i=1:100
      x(i+1)=x(i)+round(5*rand()+1);
      y(i+1)=y(i)+round(5*rand()+1);
      d(i)=sqrt(x(i+1)^2+y(i+1)^2);
      end
      subplot(1,2,1)
      plot(x,y);
      subplot(1,2,2)
      plot(s,d');

    • @gauri5601
      @gauri5601 3 года назад +1

      @@practicalhope5408 thanks sir 🙏