ਤਸਵੀਰ:Asymmetricwave2.png

ਪੰਨਾ ਸਮੱਗਰੀ ਹੋਰ ਭਾਸ਼ਾਵਾਂ ਵਿੱਚ ਸਮਰਥਿਤ ਨਹੀਂ ਹੈ।
ਵਿਕੀਪੀਡੀਆ, ਇੱਕ ਅਜ਼ਾਦ ਗਿਆਨਕੋਸ਼ ਤੋਂ

ਅਸਲ ਫ਼ਾਈਲ(1,814 × 1,358 ਪਿਕਸਲ, ਫ਼ਾਈਲ ਅਕਾਰ: 505 KB, MIME ਕਿਸਮ: image/png)

ਇਹ ਫ਼ਾਈਲ Wikimedia Commons ਦੀ ਹੈ ਅਤੇ ਹੋਰ ਪਰਿਯੋਜਨਾਵਾਂ ਵਿੱਚ ਵੀ ਵਰਤੀ ਜਾ ਸਕਦੀ ਹੈ । ਇਸ ਫ਼ਾਈਲ ਦੇ ਵੇਰਵਾ ਸਫ਼ੇ ਵਿੱਚ ਮੌਜੂਦ ਵੇਰਵਾ ਹੇਠ ਦਿਸ ਰਿਹਾ ਹੈ।

ਸਾਰ

ਵੇਰਵਾ
English: Asymmetric wavefunction for a (fermionic) 2-particle state in a one-dimensional square well potential of infinite depth. The 3D graph shows the wavefunction for the 2-particle fermionic first excited state for the square well, with each horizontal axis giving one particle's position.
ਸਰੋਤ

Own work using:

  • See for example: D.J. Griffiths, Introduction to quantum mechanics, Prentice Hall , 1995, section 5.1.1
  • Mathematica 6.0 using the code below
ਲਿਖਾਰੀ TimothyRias

ਲਸੰਸ

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
ਗੁਣਾਂ ਦੀ ਦੱਸ
This file is licensed under the Creative Commons Attribution 3.0 Unported license.
ਤੁਹਾਨੂੰ ਖੁੱਲ੍ਹ ਹੈ:
  • ਸਾਂਝਾ ਕਰਨ ਦੀ – ਰਚਨਾ ਨੂੰ ਕਾਪੀ, ਵੰਡਣਾ ਅਤੇ ਭੇਜਣਾ
  • ਮੁੜ-ਰਲ਼ਾਉਣ ਦੀ – ਰਚਨਾ ਨੂੰ ਢਾਲਣਾ
ਥੱਲੇ ਲਿਖੀਆਂ ਸ਼ਰਤਾਂ ਹੇਠ:
  • ਗੁਣਾਂ ਦੀ ਦੱਸ – ਉਚਿਤ ਕ੍ਰੈਡਿਟ ਦੇਵੋ, ਲਾਇਸੰਸ ਦਾ ਇੱਕ ਲਿੰਕ ਪ੍ਰਦਾਨ ਕਰੋ ਅਤੇ ਇਹ ਦਰਸਾਓ ਕਿ ਕੀ ਤਬਦੀਲੀਆਂ ਕੀਤੀਆਂ ਗਈਆਂ ਸਨ। ਤੁਸੀਂ ਇਹ ਕਿਸੇ ਵੀ ਵਾਜਬ ਤਰੀਕੇ ਨਾਲ ਕਰ ਸਕਦੇ ਹੋ, ਪਰ ਇਹ ਤਰੀਕਾ ਅਜਿਹਾ ਨਹੀਂ ਹੋਣਾ ਚਾਹੀਦਾ ਜੋ ਇਹ ਦਰਸਾਵੇ ਕਿ ਲਾਇਸੰਸਕਰਤਾ ਤੁਹਾਨੂੰ ਜਾਂ ਤੁਹਾਡੀ ਵਰਤੋਂ ਦਾ ਸਮਰਥਨ ਕਰਦਾ ਹੈ।

Code

&Assumptions = {n \[Element] Integers, m \[Element] Integers};
f[n_, x_] := Sqrt[2] Sin[n \[Pi] x]
a[n_, m_] := Function[{x, y}, (f[n, x] f[m, y] - f[n, y] f[m, x])/Sqrt[2]];
awave2 = Plot3D[Evaluate[a[1, 3][x, y]], {x, 0, 1}, {y, 0, 1},
  PlotPoints -> 35,
  PlotRange -> {-2.5, 3.5},
  MeshFunctions -> {#3 &},
  Mesh -> 10,
  MeshStyle -> 
   Directive[ColorData["DeepSeaColors"][.1], Thickness[.002]],
  ColorFunction -> "LakeColors",
  BoxRatios -> {1, 1, .7},
  Boxed -> False,
  Axes -> False];
agroundplot = Plot3D[-3, {x, 0, 1}, {y, 0, 1},
  MeshFunctions -> {a[1, 3][#1, #2] &},
  Mesh -> 10,
  MeshStyle -> 
   Directive[ColorData["DeepSeaColors"][.1], Thickness[.002]],
  PlotPoints -> 50,
  ColorFunction -> (ColorData["LakeColors"][(a[1, 3][#1, #2] + 2.5)/
      6] &)
  ];
awave3 = Show[{awave2, agroundplot},
 PlotRange -> {{0, 1}, {0, 1}, {-3, 3}},
 Axes -> None,
 PlotRangePadding -> None,
 ImagePadding -> 1,
 FaceGrids -> {
   {{-1, 0, 0}, {Table[i, {i, 0, 1, 1/9}], 
     Table[i, {i, -3, 3, 1}]}},
   {{0, -1, 0}, {Table[i, {i, 0, 1, 1/9}], Table[i, {i, -3, 3, 1}]}}
   },
 ViewPoint -> 1000 {5, 5, 2},
 ViewVertical -> {0, 0, 1},
 ViewCenter -> {.5, .5, 0},
 ImageSize -> 600]
Export["Asymmetricwave2.png", awave3, "PNG"]

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

ਚਿਤਰਨ

creator ਅੰਗਰੇਜ਼ੀ

some value

copyright status ਅੰਗਰੇਜ਼ੀ

copyrighted ਅੰਗਰੇਜ਼ੀ

source of file ਅੰਗਰੇਜ਼ੀ

original creation by uploader ਅੰਗਰੇਜ਼ੀ

checksum ਅੰਗਰੇਜ਼ੀ

b85517ef16909cf0c8966bef713f8c3d46430b67

determination method ਅੰਗਰੇਜ਼ੀ: SHA-1 ਅੰਗਰੇਜ਼ੀ

5,17,298 ਬਾਈਟ

height ਅੰਗਰੇਜ਼ੀ

1,358 ਪਿਕਸਲ

width ਅੰਗਰੇਜ਼ੀ

1,814 ਪਿਕਸਲ

ਫ਼ਾਈਲ ਦਾ ਅਤੀਤ

ਤਾਰੀਖ/ਸਮੇਂ ’ਤੇ ਕਲਿੱਕ ਕਰੋ ਤਾਂ ਉਸ ਸਮੇਂ ਦੀ ਫਾਈਲ ਪੇਸ਼ ਹੋ ਜਾਵੇਗੀ।

ਮਿਤੀ/ਸਮਾਂਨਮੂਨਾਨਾਪਵਰਤੋਂਕਾਰਟਿੱਪਣੀ
ਮੌਜੂਦਾ14:58, 4 ਅਪਰੈਲ 202314:58, 4 ਅਪਰੈਲ 2023 ਵੇਲੇ ਦੇ ਵਰਜਨ ਦਾ ਅੰਗੂਠਾਕਾਰ ਰੂਪ1,814 × 1,358 (505 KB)JähmefyysikkoHigher resolution image
14:51, 4 ਅਪਰੈਲ 202314:51, 4 ਅਪਰੈਲ 2023 ਵੇਲੇ ਦੇ ਵਰਜਨ ਦਾ ਅੰਗੂਠਾਕਾਰ ਰੂਪ680 × 510 (141 KB)JähmefyysikkoNew rendering with antialiasing (using the same commands)
13:14, 15 ਅਕਤੂਬਰ 200813:14, 15 ਅਕਤੂਬਰ 2008 ਵੇਲੇ ਦੇ ਵਰਜਨ ਦਾ ਅੰਗੂਠਾਕਾਰ ਰੂਪ600 × 450 (76 KB)TimothyRias{{Information |Description=Asymmetric (fermion) 2-particle state in a infinite square well potential. |Source= |Date= |Author= |Permission= |other_versions= }}
14:52, 7 ਅਕਤੂਬਰ 200814:52, 7 ਅਕਤੂਬਰ 2008 ਵੇਲੇ ਦੇ ਵਰਜਨ ਦਾ ਅੰਗੂਠਾਕਾਰ ਰੂਪ360 × 286 (24 KB)TimothyRias{{Information |Description={{en|1=Asymmetric wavefunction}} |Source=Own work by uploader |Author=TimothyRias |Date= |Permission= |other_versions= }} <!--{{ImageUpload|full}}-->

ਇਹ ਫਾਈਲ ਹੇਠਾਂ ਦਿੱਤਾ ਸਫ਼ਾ ਵਰਤਦਾ ਹੈ:

ਫ਼ਾਈਲ ਦੀ ਵਿਆਪਕ ਵਰਤੋਂ

ਇਸ ਫ਼ਾਈਲ ਨੂੰ ਹੋਰ ਹੇਠ ਲਿਖੇ ਵਿਕੀ ਵਰਤਦੇ ਹਨ:

ਮੈਟਾਡੈਟਾ