fbpx
วิกิพีเดีย

Airflow-Obstructed-Duct

ดูภาพที่มีความละเอียดสูงกว่า(1,270 × 907 พิกเซล, ขนาดไฟล์: 85 กิโลไบต์, ชนิดไมม์: image/png)

รูปภาพหรือไฟล์เสียงนี้ ต้นฉบับอยู่ที่ คอมมอนส์ รายละเอียดด้านล่าง เป็นข้อความที่แสดงผลจาก ไฟล์ต้นฉบับในคอมมอนส์
คอมมอนส์เป็นเว็บไซต์ในโครงการสำหรับเก็บรวบรวมสื่อเสรี ที่ คุณสามารถช่วยได้

ความย่อ

ภาพนี้มีภาพในรูปแบบเวกเตอร์ (SVG)
หากภาพ SVG ทำให้การแสดงผลดีกว่า หน้าที่ใช้ภาพนี้ควรเปลี่ยนไปใช้ภาพ SVG แทน

File:Airflow-Obstructed-Duct.png → File:N S Laminar.svg

สำหรับข้อมูลเพิ่มเติมเกี่ยวกับภาพเวกเตอร์ ดูที่ การเปลี่ยนไปใช้ภาพ SVG ในคอมมอนส์
นอกจากนี้สามารถดูเพิ่มเติมเกี่ยวกับ ข้อมูลเกี่ยวกับการรองรับภาพ SVG สำหรับซอฟต์แวร์มีเดียวิกิ ได้

ในภาษาอื่นๆ

Alemannisch  العربية  беларуская (тарашкевіца)  български  বাংলা  català  нохчийн  čeština  dansk  Deutsch  Ελληνικά  English  British English  Esperanto  español  eesti  euskara  فارسی  suomi  français  Frysk  galego  עברית  hrvatski  magyar  հայերեն  Bahasa Indonesia  Ido  italiano  日本語  ქართული  한국어  lietuvių  македонски  മലയാളം  Bahasa Melayu  norsk bokmål  Plattdüütsch  Nederlands  norsk nynorsk  norsk  occitan  polski  português  português do Brasil  română  русский  sicilianu  Scots  slovenčina  slovenščina  српски / srpski  svenska  தமிழ்  ไทย  Türkçe  татарча/tatarça  українська  vèneto  Tiếng Việt  中文(简体)  中文(繁體)  +/−

คำอธิบาย

A simulation using the navier-stokes differential equations of the aiflow into a duct at 0.003 m/s (laminar flow). The duct has a small obstruction in the centre that is parallel with the duct walls. The observed spike is mainly due to numerical limitations.

This script, which i originally wrote for scilab, but ported to matlab (porting is really really easy, mainly convert comments % -> // and change the fprintf and input statements)

Matlab was used to generate the image.

 %Matlab script to solve a laminar flow %in a duct problem %Constants inVel = 0.003; % Inlet Velocity (m/s) fluidVisc = 1e-5; % Fluid's Viscoisity (Pa.s) fluidDen = 1.3; %Fluid's Density (kg/m^3) MAX_RESID = 1e-5; %uhh. residual units, yeah... deltaTime = 1.5; %seconds? %Kinematic Viscosity fluidKinVisc = fluidVisc/fluidDen; %Problem dimensions ductLen=5; %m ductWidth=1; %m %grid resolution gridPerLen = 50; % m^(-1) gridDelta = 1/gridPerLen; XVec = 0:gridDelta:ductLen-gridDelta; YVec = 0:gridDelta:ductWidth-gridDelta; %Solution grid counts gridXSize = ductLen*gridPerLen; gridYSize = ductWidth*gridPerLen; %Lay grid out with Y increasing down rows %x decreasing down cols %so subscripting becomes (y,x) (sorry) velX= zeros(gridYSize,gridXSize); velY= zeros(gridYSize,gridXSize); newVelX= zeros(gridYSize,gridXSize); newVelY= zeros(gridYSize,gridXSize); %Set initial condition for i =2:gridXSize-1 for j =2:gridYSize-1 velY(j,i)=0; velX(j,i)=inVel; end end %Set boundary condition on inlet for i=2:gridYSize-1 velX(i,1)=inVel; end disp(velY(2:gridYSize-1,1)); %Arbitrarily set residual to prevent %early loop termination resid=1+MAX_RESID; simTime=0; while(deltaTime) count=0; while(resid > MAX_RESID && count < 1e2) count = count +1; for i=2:gridXSize-1 for j=2:gridYSize-1 newVelX(j,i) = velX(j,i) + deltaTime*( fluidKinVisc / (gridDelta.^2) * ... (velX(j,i+1) + velX(j+1,i) - 4*velX(j,i) + velX(j-1,i) + ... velX(j,i-1)) - 1/(2*gridDelta) *( velX(j,i) *(velX(j,i+1) - ... velX(j,i-1)) + velY(j,i)*( velX(j+1,i) - velX(j,i+1)))); newVelY(j,i) = velY(j,i) + deltaTime*( fluidKinVisc / (gridDelta.^2) * ... (velY(j,i+1) + velY(j+1,i) - 4*velY(j,i) + velY(j-1,i) + ... velY(j,i-1)) - 1/(2*gridDelta) *( velY(j,i) *(velY(j,i+1) - ... velY(j,i-1)) + velY(j,i)*( velY(j+1,i) - velY(j,i+1)))); end end %Copy the data into the front for i=2:gridXSize - 1 for j = 2:gridYSize-1 velX(j,i) = newVelX(j,i); velY(j,i) = newVelY(j,i); end end %Set free boundary condition on inlet (dv_x/dx) = dv_y/dx = 0 for i=1:gridYSize velX(i,gridXSize)=velX(i,gridXSize-1); velY(i,gridXSize)=velY(i,gridXSize-1); end %y velocity generating vent for i=floor(2/6*gridXSize):floor(4/6*gridXSize) velX(floor(gridYSize/2),i) = 0; velY(floor(gridYSize/2),i-1) = 0; end %calculate residual for %conservation of mass resid=0; for i=2:gridXSize-1 for j=2:gridYSize-1 %mass continuity equation using central difference %approx to differential resid = resid + (velX(j,i+ 1)+velY(j+1,i) - ... (velX(j,i-1) + velX(j-1,i)))^2; end end resid = resid/(4*(gridDelta.^2))*1/(gridXSize*gridYSize); fprintf('Time %5.3f \t log10Resid : %5.3f\n',simTime,log10(resid)); simTime = simTime + deltaTime; end mesh(XVec,YVec,velX) deltaTime = input('\nnew delta time:'); end %Plot the results mesh(XVec,YVec,velX) 
วันที่ 24 กุมภาพันธ์ พ.ศ. 2550 (original upload date)
แหล่งที่มา นำเข้าจาก en.wikipedia มายังคอมมอนส์
ผู้สร้างสรรค์ User A1 ที่ วิกิพีเดียภาษาอังกฤษ

การอนุญาตใช้สิทธิ

บันทึกการอัพโหลด

The original description page was here. All following user names refer to en.wikipedia.
  • 2007-02-24 05:45 User A1 1270×907×8 (86796 bytes) A simulation using the navier-stokes differential equations of the aiflow into a duct at 0.003 m/s (laminar flow). The duct has a small obstruction in the centre that is paralell with the duct walls. The observed spike is mainly due to numerical limitatio

คำบรรยายโดยย่อ

เพิ่มคำบรรยายทรรทัดเดียวเพื่อขยายความว่าไฟล์นี้มีอะไร

ไอเทมที่แสดงอยู่ในไฟล์นี้

ประกอบด้วย

สถานะลิขสิทธิ์

copyrighted, dedicated to the public domain by copyright holder อังกฤษ

สัญญาอนุญาต

released into the public domain by the copyright holder อังกฤษ

วันที่สร้าง/วันก่อตั้ง

24 กุมภาพันธ์ 2007

ประวัติไฟล์

คลิกวันที่/เวลาเพื่อดูไฟล์ที่ปรากฏในขณะนั้น

วันที่/เวลารูปย่อขนาดผู้ใช้ความเห็น
ปัจจุบัน22:52, 1 พฤษภาคม 25501,270 × 907 (85 กิโลไบต์)Smeira{{Information |Description=A simulation using the navier-stokes differential equations of the aiflow into a duct at 0.003 m/s (laminar flow). The duct has a small obstruction in the centre that is paralell with the duct walls. The observed spike is mainly

หน้าต่อไปนี้ โยงมาที่ภาพนี้:

การใช้ไฟล์ส่วนกลาง

วิกิอื่นต่อไปนี้ใช้ไฟล์นี้:

  • Matemàtiques
  • Wikipedia:WikiProject Chemical and Bio Engineering
  • User:User A1/uploaded images
  • Talk:Differential equation/Archive 1
  • User:Mubarak Hossain Chowdhury/sandbox
  • משתמש:אכן/מתמטיקה
  • Persamaan diferensial
  • 미분방정식
  • การใช้บน ko.wikiversity.org
    • 수학
  • Matemática
  • Equação diferencial
  • Equações de Navier-Stokes
  • Equação diferencial linear
  • Equação diferencial de Bernoulli
  • Equação diferencial de d'Alembert
  • Decaimento exponencial
  • Equação de Laplace
  • Equação diferencial parcial
  • Equação de Poisson
  • Equação do calor
  • Lema de Grönwall
  • Teorema de Picard-Lindelöf
  • Método de Runge-Kutta
  • Equação de Mason-Weaver
  • Equação do pêndulo
  • Equação da onda
  • Método Multigrid
  • ดูการใช้ทั่วโลกเพิ่มเติมของไฟล์นี้

    ไฟล, airflow, obstructed, duct, ไฟล, ประว, ไฟล, หน, าท, ภาพน, การใช, ไฟล, วนกลางขนาดของต, วอย, างน, กเซล, ความละเอ, ยดอ, กเซล, กเซล, กเซล, กเซล, ภาพท, ความละเอ, ยดส, งกว, 8206, กเซล, ขนาดไฟล, โลไบต, ชน, ดไมม, image, ปภาพหร, อไฟล, เส, ยงน, นฉบ, บอย, คอมมอนส, รา. ifl prawtiifl hnathimiphaphni karichiflswnklangkhnadkhxngtwxyangni 800 571 phikesl khwamlaexiydxun 320 229 phikesl 640 457 phikesl 1 024 731 phikesl 1 270 907 phikesl duphaphthimikhwamlaexiydsungkwa 8206 1 270 907 phikesl khnadifl 85 kiolibt chnidimm image png rupphaphhruxiflesiyngni tnchbbxyuthi khxmmxns raylaexiyddanlang epnkhxkhwamthiaesdngphlcak ifltnchbbinkhxmmxns khxmmxnsepnewbistinokhrngkarsahrbekbrwbrwmsuxesri thi khunsamarthchwyid khwamyx phaphnimiphaphinrupaebbewketxr SVG hakphaph SVG thaihkaraesdngphldikwa hnathiichphaphnikhwrepliynipichphaph SVG aethn File Airflow Obstructed Duct png File N S Laminar svg sahrbkhxmulephimetimekiywkbphaphewketxr duthi karepliynipichphaph SVG inkhxmmxnsnxkcaknisamarthduephimetimekiywkb khxmulekiywkbkarrxngrbphaph SVG sahrbsxftaewrmiediywiki id inphasaxunAlemannisch العربية belaruskaya tarashkevica blgarski ব ল catala nohchijn cestina dansk Deutsch Ellhnika English British English Esperanto espanol eesti euskara فارسی suomi francais Frysk galego עברית hrvatski magyar հայերեն Bahasa Indonesia Ido italiano 日本語 ქართული 한국어 lietuviu makedonski മലയ ള Bahasa Melayu norsk bokmal Plattduutsch Nederlands norsk nynorsk norsk occitan polski portugues portugues do Brasil romană russkij sicilianu Scots slovencina slovenscina srpski srpski svenska தம ழ ithy Turkce tatarcha tatarca ukrayinska veneto Tiếng Việt 中文 简体 中文 繁體 khaxthibayAirflow Obstructed Duct png A simulation using the navier stokes differential equations of the aiflow into a duct at 0 003 m s laminar flow The duct has a small obstruction in the centre that is parallel with the duct walls The observed spike is mainly due to numerical limitations This script which i originally wrote for scilab but ported to matlab porting is really really easy mainly convert comments gt and change the fprintf and input statements Matlab was used to generate the image Matlab script to solve a laminar flow in a duct problem Constants inVel 0 003 Inlet Velocity m s fluidVisc 1e 5 Fluid s Viscoisity Pa s fluidDen 1 3 Fluid s Density kg m 3 MAX RESID 1e 5 uhh residual units yeah deltaTime 1 5 seconds Kinematic Viscosity fluidKinVisc fluidVisc fluidDen Problem dimensions ductLen 5 m ductWidth 1 m grid resolution gridPerLen 50 m 1 gridDelta 1 gridPerLen XVec 0 gridDelta ductLen gridDelta YVec 0 gridDelta ductWidth gridDelta Solution grid counts gridXSize ductLen gridPerLen gridYSize ductWidth gridPerLen Lay grid out with Y increasing down rows x decreasing down cols so subscripting becomes y x sorry velX zeros gridYSize gridXSize velY zeros gridYSize gridXSize newVelX zeros gridYSize gridXSize newVelY zeros gridYSize gridXSize Set initial condition for i 2 gridXSize 1 for j 2 gridYSize 1 velY j i 0 velX j i inVel end end Set boundary condition on inlet for i 2 gridYSize 1 velX i 1 inVel end disp velY 2 gridYSize 1 1 Arbitrarily set residual to prevent early loop termination resid 1 MAX RESID simTime 0 while deltaTime count 0 while resid gt MAX RESID amp amp count lt 1e2 count count 1 for i 2 gridXSize 1 for j 2 gridYSize 1 newVelX j i velX j i deltaTime fluidKinVisc gridDelta 2 velX j i 1 velX j 1 i 4 velX j i velX j 1 i velX j i 1 1 2 gridDelta velX j i velX j i 1 velX j i 1 velY j i velX j 1 i velX j i 1 newVelY j i velY j i deltaTime fluidKinVisc gridDelta 2 velY j i 1 velY j 1 i 4 velY j i velY j 1 i velY j i 1 1 2 gridDelta velY j i velY j i 1 velY j i 1 velY j i velY j 1 i velY j i 1 end end Copy the data into the front for i 2 gridXSize 1 for j 2 gridYSize 1 velX j i newVelX j i velY j i newVelY j i end end Set free boundary condition on inlet dv x dx dv y dx 0 for i 1 gridYSize velX i gridXSize velX i gridXSize 1 velY i gridXSize velY i gridXSize 1 end y velocity generating vent for i floor 2 6 gridXSize floor 4 6 gridXSize velX floor gridYSize 2 i 0 velY floor gridYSize 2 i 1 0 end calculate residual for conservation of mass resid 0 for i 2 gridXSize 1 for j 2 gridYSize 1 mass continuity equation using central difference approx to differential resid resid velX j i 1 velY j 1 i velX j i 1 velX j 1 i 2 end end resid resid 4 gridDelta 2 1 gridXSize gridYSize fprintf Time 5 3f t log10Resid 5 3f n simTime log10 resid simTime simTime deltaTime end mesh XVec YVec velX deltaTime input nnew delta time end Plot the results mesh XVec YVec velX wnthi 24 kumphaphnth ph s 2550 original upload date aehlngthima naekhacak en wikipedia mayngkhxmmxnsphusrangsrrkh User A1 thi wikiphiediyphasaxngkvs karxnuyatichsiththi Public domain Public domain false falsenganniidthukephyaephrsusatharnsmbtiodyecakhxng User A1 thi wikiphiediyphasaxngkvs sungmiphlthwolkinbangpraeths karkrathadngklawxacimsamarththaidtamkdhmayUser A1 xnuyatihthukkhnmisiththiinkarichiflniinthukehtuphlkarich odyimmimienguxnikh ewnaetkdhmayimxnuyatihthaechnnnPublic domain Public domain false falsebnthukkarxphohld The original description page was here All following user names refer to en wikipedia 2007 02 24 05 45 User A1 1270 907 8 86796 bytes A simulation using the navier stokes differential equations of the aiflow into a duct at 0 003 m s laminar flow The duct has a small obstruction in the centre that is paralell with the duct walls The observed spike is mainly due to numerical limitatiokhabrryayodyyxithyephimkhabrryaythrrthdediywephuxkhyaykhwamwaiflnimixairixethmthiaesdngxyuiniflniprakxbdwysthanalikhsiththicopyrighted dedicated to the public domain by copyright holder xngkvssyyaxnuyatreleased into the public domain by the copyright holder xngkvswnthisrang wnkxtng24 kumphaphnth 2007 prawtiifl khlikwnthi ewlaephuxduiflthipraktinkhnann wnthi ewlarupyxkhnadphuichkhwamehn pccubn22 52 1 phvsphakhm 25501 270 907 85 kiolibt Smeira Information Description A simulation using the navier stokes differential equations of the aiflow into a duct at 0 003 m s laminar flow The duct has a small obstruction in the centre that is paralell with the duct walls The observed spike is mainly hnathimiphaphni hnatxipni oyngmathiphaphni khnitsastr karichiflswnklang wikixuntxipniichiflni karichbn ba wikipedia org Differencial tigeҙlәmә karichbn bg wikipedia org Matematika karichbn bn wikipedia org ব যবকলন য সম করণ karichbn ca wikipedia org Calcul infinitesimal Matematiques karichbn ckb wikipedia org ماتماتیک karichbn cs wikipedia org Matematika karichbn de wikipedia org Diskussion Differentialgleichung karichbn en wikipedia org User Vufors Wikipedia WikiProject Chemical and Bio Engineering User User A1 uploaded images Talk Differential equation Archive 1 User Mubarak Hossain Chowdhury sandbox karichbn en wikiquote org Integration karichbn es wikipedia org Matematicas karichbn fa wikipedia org معادله دیفرانسیل karichbn he wikipedia org מתמטיקה משתמש אכן מתמטיקה karichbn hif wikipedia org Differential equation karichbn hi wikipedia org गण त karichbn hr wikipedia org Matematika karichbn hy wikipedia org Նավիե Ստոքսի հավասարում karichbn id wikipedia org Matematika Persamaan diferensial karichbn jv wikipedia org Matematika karichbn ko wikipedia org 수학 미분방정식 karichbn ko wikiversity org 수학 karichbn map bms wikipedia org Matematika karichbn ms wikipedia org Matematik karichbn mwl wikipedia org Matematica karichbn pt wikipedia org Isaac Newton Matematica Equacao diferencial Equacoes de Navier Stokes Equacao diferencial linear Equacao diferencial de Bernoulli Equacao diferencial de d Alembert Decaimento exponencial Equacao de Laplace Equacao diferencial parcial Equacao de Poisson Equacao do calor Lema de Gronwall Teorema de Picard Lindelof Metodo de Runge Kutta Equacao de Mason Weaver Equacao do pendulo Equacao da onda Metodo Multigrid dukarichthwolkephimetimkhxngiflni ekhathungcak https th wikipedia org wiki ifl Airflow Obstructed Duct png, wikipedia, วิกิ หนังสือ, หนังสือ, ห้องสมุด,

    บทความ

    , อ่าน, ดาวน์โหลด, ฟรี, ดาวน์โหลดฟรี, mp3, วิดีโอ, mp4, 3gp, jpg, jpeg, gif, png, รูปภาพ, เพลง, เพลง, หนัง, หนังสือ, เกม, เกม