Changes

Jump to: navigation, search

GPU610/TeamKCM

772 bytes added, 23:48, 3 October 2014
Taeyang's Findings
====Taeyang's Findings====
My program is to solve the heat transfer problem using explicit method.I found this source code at http://www.pengfeidu.net/Media/pdf/1dUnsteadyHeatTransferCode.pdf The 'Solve()' function takes 3 arguments and as t-value decreases the processing time increases as shown below[[Image:filename|thumb|widthpx| ]] [[Image:filename|thumb|widthpx| ]] The 'Solve()' function:  void solve(){ int j=0; while(j<tTotal/dt){ solutionNew[0]=10; solutionNew[xGridNum]=120; for(int k=1;k<xGridNum;k++){ solutionNew[k] = solutionLast[k]+dt*(K/dx/dx* (solutionLast[k-1]+solutionLast[k+1]-2.*solutionLast[k] +source(x[k],j*dt)) ); } j++; solutionLast=solutionNew; } } By Implementing parallel solution, I believe I can shorten the processing time
====SeungYeon's Findings====
There are many types of image processing or operations can be done. Some of examples are rotating,re-sizing,blurring, etc...

Navigation menu