ÿþ<html dir="ltr"> <head> <meta http-equiv="Content-Language" content="en-us"> <meta name="GENERATOR" content="Microsoft FrontPage 6.0"> <meta name="ProgId" content="FrontPage.Editor.Document"> <meta http-equiv="Content-Type" content="text/html; charset=unicode"> <title>Restec</title> </head> <script language="JavaScript"> //Analog clock script- By Kurt (kurt.grigg@virgin.net) //Script featured on Dynamic Drive //Visit http://www.dynamicdrive.com for this script and more fCol='444444'; //face colour. sCol='FF0000'; //seconds colour. mCol='444444'; //minutes colour. hCol='444444'; //hours colour. Ybase=30; //Clock height. Xbase=30; //Clock width. H='...'; H=H.split(''); M='....'; M=M.split(''); S='.....'; S=S.split(''); NS4=(document.layers); NS6=(document.getElementById&&!document.all); IE4=(document.all); Ypos=0; Xpos=0; dots=12; Split=360/dots; if (NS6){ for (i=1; i < dots+1; i++){ document.write('<div id="n6Digits'+i+'" style="position:absolute;top:0px;left:0px;width:30px;height:30px;font-family:Arial;font-size:10px;color:#'+fCol+';text-align:center;padding-top:10px">'+i+'</div>'); } for (i=0; i < M.length; i++){ document.write('<div id="Ny'+i+'" style="position:absolute;top:0px;left:0px;width:2px;height:2px;font-size:2px;background:#'+mCol+'"></div>'); } for (i=0; i < H.length; i++){ document.write('<div id="Nz'+i+'" style="position:absolute;top:0px;left:0px;width:2px;height:2px;font-size:2px;background:#'+hCol+'"></div>'); } for (i=0; i < S.length; i++){ document.write('<div id="Nx'+i+'" style="position:absolute;top:0px;left:0px;width:2px;height:2px;font-size:2px;background:#'+sCol+'"></div>'); } } if (NS4){ dgts='1 2 3 4 5 6 7 8 9 10 11 12'; dgts=dgts.split(' ') for (i=0; i < dots; i++){ document.write('<layer name=nsDigits'+i+' top=0 left=0 height=30 width=30><center><font face=Arial size=1 color='+fCol+'>'+dgts[i]+'</font></center></layer>'); } for (i=0; i < M.length; i++){ document.write('<layer name=ny'+i+' top=0 left=0 bgcolor='+mCol+' clip="0,0,2,2"></layer>'); } for (i=0; i < H.length; i++){ document.write('<layer name=nz'+i+' top=0 left=0 bgcolor='+hCol+' clip="0,0,2,2"></layer>'); } for (i=0; i < S.length; i++){ document.write('<layer name=nx'+i+' top=0 left=0 bgcolor='+sCol+' clip="0,0,2,2"></layer>'); } } if (IE4){ document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">'); for (i=1; i < dots+1; i++){ document.write('<div id="ieDigits" style="position:absolute;top:0px;left:0px;width:30px;height:30px;font-family:Arial;font-size:10px;color:'+fCol+';text-align:center;padding-top:10px">'+i+'</div>'); } document.write('</div></div>') document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">'); for (i=0; i < M.length; i++){ document.write('<div id=y style="position:absolute;width:2px;height:2px;font-size:2px;background:'+mCol+'"></div>'); } document.write('</div></div>') document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">'); for (i=0; i < H.length; i++){ document.write('<div id=z style="position:absolute;width:2px;height:2px;font-size:2px;background:'+hCol+'"></div>'); } document.write('</div></div>') document.write('<div style="position:absolute;top:0px;left:0px"><div style="position:relative">'); for (i=0; i < S.length; i++){ document.write('<div id=x style="position:absolute;width:2px;height:2px;font-size:2px;background:'+sCol+'"></div>'); } document.write('</div></div>') } function clock(){ time = new Date (); secs = time.getSeconds(); sec = -1.57 + Math.PI * secs/30; mins = time.getMinutes(); min = -1.57 + Math.PI * mins/30; hr = time.getHours(); hrs = -1.57 + Math.PI * hr/6 + Math.PI*parseInt(time.getMinutes())/360; if (NS6){ Ypos=window.pageYOffset+window.innerHeight-Ybase-25; Xpos=window.pageXOffset+window.innerWidth-Xbase-30; for (i=1; i < dots+1; i++){ document.getElementById("n6Digits"+i).style.top=Ypos-15+Ybase*Math.sin(-1.56 +i *Split*Math.PI/180) document.getElementById("n6Digits"+i).style.left=Xpos-15+Xbase*Math.cos(-1.56 +i*Split*Math.PI/180) } for (i=0; i < S.length; i++){ document.getElementById("Nx"+i).style.top=Ypos+i*Ybase/4.1*Math.sin(sec); document.getElementById("Nx"+i).style.left=Xpos+i*Xbase/4.1*Math.cos(sec); } for (i=0; i < M.length; i++){ document.getElementById("Ny"+i).style.top=Ypos+i*Ybase/4.1*Math.sin(min); document.getElementById("Ny"+i).style.left=Xpos+i*Xbase/4.1*Math.cos(min); } for (i=0; i < H.length; i++){ document.getElementById("Nz"+i).style.top=Ypos+i*Ybase/4.1*Math.sin(hrs); document.getElementById("Nz"+i).style.left=Xpos+i*Xbase/4.1*Math.cos(hrs); } } if (NS4){ Ypos=window.pageYOffset+window.innerHeight-Ybase-20; Xpos=window.pageXOffset+window.innerWidth-Xbase-30; for (i=0; i < dots; ++i){ document.layers["nsDigits"+i].top=Ypos-5+Ybase*Math.sin(-1.045 +i*Split*Math.PI/180) document.layers["nsDigits"+i].left=Xpos-15+Xbase*Math.cos(-1.045 +i*Split*Math.PI/180) } for (i=0; i < S.length; i++){ document.layers["nx"+i].top=Ypos+i*Ybase/4.1*Math.sin(sec); document.layers["nx"+i].left=Xpos+i*Xbase/4.1*Math.cos(sec); } for (i=0; i < M.length; i++){ document.layers["ny"+i].top=Ypos+i*Ybase/4.1*Math.sin(min); document.layers["ny"+i].left=Xpos+i*Xbase/4.1*Math.cos(min); } for (i=0; i < H.length; i++){ document.layers["nz"+i].top=Ypos+i*Ybase/4.1*Math.sin(hrs); document.layers["nz"+i].left=Xpos+i*Xbase/4.1*Math.cos(hrs); } } if (IE4){ Ypos=document.body.scrollTop+window.document.body.clientHeight-Ybase-20; Xpos=document.body.scrollLeft+window.document.body.clientWidth-Xbase-20; for (i=0; i < dots; ++i){ ieDigits[i].style.pixelTop=Ypos-15+Ybase*Math.sin(-1.045 +i *Split*Math.PI/180) ieDigits[i].style.pixelLeft=Xpos-15+Xbase*Math.cos(-1.045 +i *Split*Math.PI/180) } for (i=0; i < S.length; i++){ x[i].style.pixelTop =Ypos+i*Ybase/4.1*Math.sin(sec); x[i].style.pixelLeft=Xpos+i*Xbase/4.1*Math.cos(sec); } for (i=0; i < M.length; i++){ y[i].style.pixelTop =Ypos+i*Ybase/4.1*Math.sin(min); y[i].style.pixelLeft=Xpos+i*Xbase/4.1*Math.cos(min); } for (i=0; i < H.length; i++){ z[i].style.pixelTop =Ypos+i*Ybase/4.1*Math.sin(hrs); z[i].style.pixelLeft=Xpos+i*Xbase/4.1*Math.cos(hrs); } } setTimeout('clock()',100); } clock(); //--> </script> <body topmargin="0" leftmargin="0" background="00022.jpg"> <table border="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="1000" id="AutoNumber1" height="231" cellpadding="0"> <tr> <td width="1000" colspan="2" height="125" align="left" valign="top"> <img border="0" src="strech%20sym%20modfy.gif" width="1000" height="133"></td> </tr> <tr> <td width="1000" colspan="2" height="9"> <img border="0" src="line.jpg" width="1000" height="13"></td> </tr> <tr> <td width="42" height="352" valign="top"> <table border="0" cellspacing="0" id="AutoNumber4" width="1" height="352" cellpadding="0"> <tr> <th width="147" align="left" bgcolor="#000000" height="22" nowrap style="border-style: none; border-width: medium; " background="but1.gif" valign="top" dir="ltr"> <p dir="ltr"><b> <font color="#FFFF00">&nbsp; </font> <a target="_top" style="text-decoration: none" href="index.htm"> <font color="#FFFF00">Home</font></a></font></b></th> </tr> <tr> <th width="147" align="left" bgcolor="#000000" height="22" nowrap style="border-style: none; border-width: medium; " background="but1.gif" dir="ltr" valign="top"> <p dir="ltr"><b><font color="#FFFF00" size="2">&nbsp;&nbsp; </font> <font color="#FFFF00">Restec</font></b></th> </tr> <tr> <th width="147" align="left" bgcolor="#000000" height="22" nowrap style="border-style: none; border-width: medium; " background="but1.gif" dir="ltr" valign="top"> <p dir="ltr"> <b><font color="#FFFFFF">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a target="_top" href="Mission.htm" style="text-decoration: none"><font color="#FFFFFF"> About Us</font></a></font></b></th> </tr> <tr> <th width="147" align="left" bgcolor="#000000" height="22" nowrap style="border-style: none; border-width: medium; " background="but1.gif" dir="ltr" valign="top"> <p dir="ltr"> <font color="#FFFFFF">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font> <a target="_top" style="text-decoration: none; font-weight:700" href="staff.htm"> <font color="#FFFFFF">Staff</font></a></th> </tr> <tr> <th width="147" align="left" bgcolor="#000000" height="22" nowrap style="border-style: none; border-width: medium; " background="but1.gif" dir="ltr" valign="top"> <p dir="ltr"> <font color="#FFFFFF">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font> <a target="_top" style="text-decoration: none; font-weight:700" href="Contact_Us.asp.htm"> <font color="#FFFFFF">Contact Us</font></a></th> </tr> <tr> <th width="147" align="left" bgcolor="#000000" height="22" nowrap style="border-style: none; border-width: medium; " background="but1.gif" dir="ltr" valign="top"> <p align="left" dir="ltr"><font color="#FFFF00"><b> &nbsp; Services</b></font></th> </tr> <tr> <th width="147" align="left" bgcolor="#000000" height="22" nowrap style="border-style: none; border-width: medium; " background="but1.gif" dir="ltr" valign="top"> <p dir="ltr"> <b> <font color="#FFFFFF"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a target="_top" href="Agencies.htm" style="text-decoration: none"> <font color="#FFFFFF">Agencies</font></a></font></b></th> </tr> <tr> <th width="147" align="left" bgcolor="#000000" height="22" nowrap style="border-style: none; border-width: medium; " background="but1.gif" dir="ltr" valign="top"> <p dir="ltr"> <font color="#FFFFFF"><span style="font-weight:700"> <a target="_top" style="text-decoration: none" href="Contracts.htm">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <font color="#FFFFFF">Contracts</font></a></span></font></th> </tr> <tr> <th width="147" align="left" bgcolor="#000000" height="22" nowrap style="border-style: none; border-width: medium; " background="but1.gif" dir="ltr" valign="top"> <p dir="ltr"> <font size="2" color="#FFFFFF"> <b> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </b></font><font color="#FFFFFF"><span style="font-weight: 700"> &nbsp;</span><span style="text-decoration: none; font-weight: 700"><a target="_top" style="text-decoration: none; font-weight:700" href="Lab%20systems.htm"><font color="#FFFFFF">Lab Systems </font></a></span></font></th> </tr> <tr> <th width="147" align="left" bgcolor="#000000" height="22" nowrap style="border-style: none; border-width: medium; " background="but1.gif" dir="ltr" valign="top"> <p align="left" dir="ltr"> <font color="#FFFF00"><b>&nbsp; PVT R&amp;D</b></font></th> </tr> <tr> <th width="147" align="left" bgcolor="#000000" height="22" nowrap style="border-style: none; border-width: medium; " background="but1.gif" dir="ltr" valign="top"> <p dir="ltr"> <b> <font color="#FFFFFF">&nbsp;&nbsp;&nbsp;&nbsp; </font> <a target="_top" href="PVT%20software.htm" style="text-decoration: none"> <font color="#FFFFFF">&nbsp;&nbsp;PVT Software</font></a></b></th> </tr> <tr> <th width="147" align="left" bgcolor="#000000" height="22" nowrap style="border-style: none; border-width: medium; " background="but1.gif" dir="ltr" valign="top"> <p dir="ltr"> <font color="#FFFFFF"> <span style="font-weight: 700">&nbsp;&nbsp;&nbsp;&gt;&gt;<a href="Publications.htm" style="text-decoration: none"><font color="#FFFFFF">PVT Publications</font></a></span></font></th> </tr> <tr> <th width="147" align="left" bgcolor="#000000" height="22" nowrap style="border-style: none; border-width: medium; " background="but1.gif" dir="ltr" valign="top"> <p align="left" dir="ltr"> <b><font color="#FFFF00">&nbsp; Partners</font></b></th> </tr> <tr> <th width="147" align="left" bgcolor="#000000" height="22" nowrap style="border-style: none; border-width: medium; " background="but1.gif" dir="ltr" valign="top"> <p dir="ltr"> <b> <font color="#FFFFFF"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a target="_top" style="text-decoration: none" href="Clients.htm"><font color="#FFFFFF"> Clients</font></a></font></b></th> </tr> <tr> <th width="147" align="left" bgcolor="#000000" height="22" nowrap style="border-style: none; border-width: medium; " background="but1.gif" dir="ltr" valign="top"> <p dir="ltr"> <b> <font color="#FFFFFF"> <a target="_top" style="text-decoration: none" href="Companies.htm">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <font color="#FFFFFF">Companies</font></a></font></b></th> </tr> <tr> <th width="147" align="left" bgcolor="#000000" height="22" nowrap style="border-style: none; border-width: medium; " background="but1.gif" dir="ltr" valign="top"> <p dir="ltr"> <font color="#FFFFFF">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font> <a target="_top" style="text-decoration: none; font-weight:700" href="Experts.asp.htm"> <font color="#FFFFFF">Experts</font></a></th> </tr> </table> </td> <td width="1060" height="352" valign="top"> <table border="1" cellspacing="1" style="border-collapse: collapse; border-width: 0" bordercolor="#111111" width="873" id="AutoNumber3" height="309"> <tr> <th width="10" align="left" height="102" nowrap style="border-style: none; border-width: medium; " valign="top" dir="ltr" rowspan="3"> &nbsp;</th> <td width="726" height="51" style="border-style: none; border-width: medium"> <p align="left" dir="ltr"><font face="Garamond Premr Pro Smbd" size="7"><i><b>&nbsp;</b></i></font><i><font face="Garamond Premr Pro Smbd" size="7"><b>&nbsp; PVT Publications</b></font></i></p> </td> <td width="17" height="298" rowspan="3" style="border-style: none; border-width: medium" valign="middle">&nbsp;</td> </tr> <tr> <td width="726" height="20" style="border-style: none; border-width: medium"> <hr color="#000000" dir="ltr"> </td> </tr> <tr> <td width="726" height="227" style="border-style: none; border-width: medium" valign="top"> <table border="1" cellspacing="1" width="115%" id="AutoNumber7" height="1" style="border-width: 0"> <tr> <td width="76%" height="1" style="border-style: none; border-width: medium" valign="top"> <p class="MsoHeading9" align="center" style="text-align: justify; text-indent: -.75in; page-break-after: avoid; margin-left: .75in; margin-right: 2.2pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr"> <i> <span style="font-size: 18.0pt; color: red; text-decoration:none" dir="LTR"> <a href="#1. Papers Published in Refereed Journals"> <span style="font-size: 18.0pt; color:#008000; text-decoration:none">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span> <font color="#008000">I.</font><span style="font-size: 18.0pt; color:#008000; "> </span><font color="#008000">Papers Published in Refereed Journals.</font></a></span></i></p> <p class="MsoHeading9" align="center" style="text-align: justify; text-indent: -.75in; page-break-after: avoid; margin-left: .75in; margin-right: 2.2pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr">&nbsp;</p> <p class="MsoHeading9" align="center" style="text-align: justify; text-indent: -.75in; page-break-after: avoid; margin-left: .75in; margin-right: 2.2pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr"> <i> <a style="color: #008000" href="#_____II._Papers_Published_in_Conference_Proceeding._"> <span style="font-size: 18.0pt; color:#008000; text-decoration:none" dir="LTR">&nbsp;&nbsp;&nbsp;&nbsp; </span> <span style="font-size: 18.0pt; color: red; text-decoration:underline" dir="LTR"> <font color="#008000">I</font></span><span style="font-size: 18.0pt; color: red; text-decoration:none" dir="LTR"><span style="font-size: 18.0pt; color: red; text-decoration:underline" dir="LTR"><font color="#008000">I.</font></span><span style="font-size: 18.0pt; color:#008000; text-decoration:none underline"> </span></span> <span style="font-size: 18.0pt; color: red; " dir="LTR"> <font color="#008000">Papers Published in Conference Proceeding.</font></span></a></i></p> <p class="MsoHeading9" align="center" style="text-align: justify; text-indent: -.75in; page-break-after: avoid; margin-left: .75in; margin-right: 2.2pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr">&nbsp;</p> <p class="MsoHeading9" align="center" style="text-align: left; text-indent: -.75in; page-break-after: avoid; margin-left: .75in; margin-right: -4.05pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr"> <span dir="LTR"><i> <font color="#008000"> <span style="font-size: 18.0pt; text-decoration: none" dir="LTR"> &nbsp;&nbsp;&nbsp; </span></font> <span style="font-size: 18.0pt; color: red; text-decoration: none" dir="LTR"> <a href="#I I I. Public Seminars."><font color="#008000">I</font><font color="#008000">II.</font></a><span style="font-size: 18.0pt; color:red; "><a href="#III . Public Seminars"><font color="#008000">&nbsp;Public Seminars.</font></a></span></span></i></span></p> <p class="MsoHeading9" align="center" style="text-align: justify; text-indent: -.75in; page-break-after: avoid; margin-left: .75in; margin-right: 2.2pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr"> &nbsp;</p> <p class="MsoHeading9" align="center" style="text-align: justify; text-indent: -.75in; page-break-after: avoid; margin-left: .75in; margin-right: 2.2pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr"> &nbsp;</p> <hr color="#000000" dir="ltr" size="1"> <p class="MsoHeading9" align="center" style="text-align: justify; text-indent: -.75in; page-break-after: avoid; margin-left: .75in; margin-right: 10; margin-top: 0in; margin-bottom: .0001pt" dir="ltr"> <i> <a name="1. Papers Published in Refereed Journals"> <font face="Simplified Arabic" size="5" color="#008000"> &nbsp;</font><span dir="LTR"><font color="#008000"><span style="font-size: 18.0pt; text-decoration: none">&nbsp; 1.&nbsp;&nbsp; Papers Published in Refereed Journals</span></font></span></a></i></p> <table border="1" width="100%" id="table6"> <tr> <td align="center" height="39"><b><span class="leftnav_title">#</span></b></td> <td width="324" height="39"> <p align="center"><b>Paper </b> </td> <td width="158" height="39" align="center"> <p align="center"><b>AUTHOR</b></td> <td width="213" height="39" align="center"> <p align="center"><b>Journal</b></td> <td align="center"><b>Date</b></td> </tr> <tr> <td align="center">1</td> <td width="324"> <span style="font-family: Times New Roman" dir="ltr"> <a href="marhoun1-1.htm"> <i> &quot;PVT Correlations for Middle East Crude Oils,&quot;</i> </a></span></td> <td width="158" align="center"> <b> <span style="font-family: Times New Roman" dir="ltr">Al-Marhoun, M.A.</span></b></td> <td width="213" align="center"> <span style="font-family: Times New Roman" dir="ltr">Journal of Petroleum Technology</span></td> <td align="center"> <span style="font-family: Times New Roman" dir="ltr">May 1988</span></td> </tr> <tr> <td align="center">2</td> <td width="324"> <span style="font-family: Times New Roman" dir="ltr"> <i><a href="marhoun1-2.htm">Development of A New Correlation for Bubble Point Oil Viscosity,</a></i></span></td> <td width="158" align="center"> <b> <span style="font-family: Times New Roman" dir="ltr">Abu-Khamsin, S.A. and Al-Marhoun, M.A.</span></b></td> <td width="213" align="center"> <span style="font-family: Times New Roman" dir="ltr">Arabian Journal for Science and Engineering,</span></td> <td align="center"> <span style="font-family: Times New Roman" dir="ltr">April 1991</span></td> </tr> <tr> <td align="center">3</td> <td width="324"> <span style="font-family: Times New Roman" dir="ltr"><i> <a href="marhoun1-3.htm">New Correlations for Formation Volume Factors of Oil and Gas Mixtures,</a></i></span></td> <td width="158" align="center"> <b> <span style="font-family: Times New Roman" dir="ltr">Al-Marhoun, M.A.</span></b></td> <td width="213" align="center"> <span style="font-family: Times New Roman" dir="ltr">Journal of Canadian Petroleum Technology</span></td> <td align="center"> <span style="font-family: Times New Roman" dir="ltr"> March 1992</span></td> </tr> <tr> <td align="center">4</td> <td width="324"> <span style="font-family: Times New Roman" dir="ltr"> <i><a href="marhoun1-4.htm">Discussion of Correlation of PVT Properties for UAE Crudes</a></i></span></td> <td width="158" align="center"> <b> <span style="font-family: Times New Roman" dir="ltr">Al-Yousef, H.Y. and Al-Marhoun, M.A.</span></b></td> <td width="213" align="center"> <span style="font-family: Times New Roman" dir="ltr">SPE Formation Evaluation</span></td> <td align="center"> <span style="font-family: Times New Roman" dir="ltr">March 1993</span></td> </tr> <tr> <td align="center">5</td> <td width="324"> <span style="font-family: Times New Roman" dir="ltr"> <i><a href="marhoun1-5.htm">A New Correlation for Two-phase Flow Through Chokes,</a></i></span></td> <td width="158" align="center"> <b> <span style="font-family: Times New Roman" dir="ltr">Al-Towailib, A.I. and Al-Marhoun, M.A.</span></b></td> <td width="213" align="center"> <span style="font-family: Times New Roman" dir="ltr">Journal of Canadian Petroleum Technology</span></td> <td align="center"> <span style="font-family: Times New Roman" dir="ltr">May 1994</span></td> </tr> <tr> <td align="center">6</td> <td width="324"> <span style="font-family: Times New Roman" dir="ltr"> <i><a href="marhoun1-6.htm">Evaluation of Empirical Correlations for Bubblepoint Oil Formation Volume Factor </a></i></span></td> <td width="158" align="center"> <b> <span style="font-family: Times New Roman" dir="ltr">Al-Fattah, S. M. and Al-Marhoun, M.A.</span></b></td> <td width="213" align="center"> <span style="font-family: Times New Roman" dir="ltr">Journal of Petroleum Science and Engineering</span></td> <td align="center"> <span style="font-family: Times New Roman" dir="ltr">June 1994</span></td> </tr> <tr> <td align="center">7</td> <td width="324"> <i> <span style="font-family: Times New Roman" dir="ltr"> <a href="marhoun1-7.htm">Automated Method for Smoothing Experimental Flash Liberation PVT Data</a></span></i></td> <td width="158" align="center"> <span style="font-family: Times New Roman" dir="LTR"> <b>Al-Yousef, H.Y. and Al-Marhoun, M.A.</b></span></td> <td width="213" align="center"> <span style="font-family: Times New Roman" dir="ltr">Journal of Canadian Petroleum Technology</span></td> <td align="center"> <span style="font-family: Times New Roman" dir="LTR"> March 1995</span></td> </tr> <tr> <td align="center">8</td> <td width="324"> <i> <span style="font-family: Times New Roman" dir="ltr"> <a href="marhoun1-8.htm">Evaluation of Empirically Derived PVT Properties for Pakistani Crude Oils,</a></span></i></td> <td width="158" align="center"> <span style="font-family: Times New Roman" dir="LTR"> <b>Mahmood, Aamir and Al-Marhoun, M.A.</b></span></td> <td width="213" align="center"> <span style="font-family: Times New Roman" dir="ltr">Journal of Petroleum Science and Engineering</span></td> <td align="center"> <span style="font-family: Times New Roman" dir="LTR"> June 1996</span></td> </tr> <tr> <td align="center">9</td> <td width="324"> <i> <span style="font-family: Times New Roman" dir="ltr"> <a href="marhoun1-9.htm">Adjustment of Differential Liberation Data to Separator Conditions,</a></span></i></td> <td width="158" align="center"> <span style="font-family: Times New Roman" dir="LTR"> <b>Al-Marhoun, M.A.</b></span></td> <td width="213" align="center"> <span style="font-family: Times New Roman" dir="LTR"> SPE Reservoir Evaluation &amp; Engineering</span></td> <td align="center"> <span style="font-family: Times New Roman" dir="LTR"> June 2003</span></td> </tr> <tr> <td align="center">10</td> <td width="324"> <span style="font-family: Times New Roman" dir="ltr"> <i><a href="marhoun1-10.htm">Evaluation of empirically derived PVT properties for Middle East crude oils,</a></i></span></td> <td width="158" align="center"> <span style="font-family: Times New Roman" dir="LTR"> <b>Al-Marhoun, M.A.</b></span></td> <td width="213" align="center"> <span style="font-family: Times New Roman" dir="ltr">Journal of Petroleum Science and Engineering</span></td> <td align="center">2004</td> </tr> <tr> <td align="center">11</td> <td width="324"> <i> <span style="font-family: Times New Roman" dir="ltr"> <a href="marhoun1-11.htm">A New Correlation for Undersaturated Isothermal&nbsp; Oil Compressibility,</a></span></i></td> <td width="158" align="center"> <span style="font-family: Times New Roman" dir="LTR"> <b>Al-Marhoun, M.A.</b></span></td> <td width="213" align="center"> <span style="font-family: Times New Roman" dir="LTR"> SPE Reservoir Evaluation &amp; Engineering online</span></td> <td align="center"> <span style="font-family: Times New Roman" dir="LTR"> August 2006</span></td> </tr> </table> <p class="MsoHeading9" align="center" style="text-align: justify; text-indent: -.75in; page-break-after: avoid; margin-left: .75in; margin-right: 10; margin-top: 0in; margin-bottom: .0001pt" dir="ltr"> &nbsp;</p> <p class="MsoHeading9" align="center" style="text-align: justify; text-indent: -.75in; page-break-after: avoid; margin-left: .75in; margin-right: 10; margin-top: 0in; margin-bottom: .0001pt" dir="ltr"> &nbsp;</p> <p class="MsoNormal" style="text-kashida: 0%; text-indent: -27.0pt; margin-left: 27.0pt; margin-right: -4.05pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr" align="center"> <b><u><font color="#008000" face="Arno Pro Caption"><a href="#top"> <font color="#008000">Top</font></a></font></u></b></p> <hr color="#000000" dir="ltr" size="1"> <p class="MsoHeading9" align="center" style="text-align: justify; text-indent: -.75in; page-break-after: avoid; margin-left: .75in; margin-right: 2.2pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr"> <i> <a name="_____II._Papers_Published_in_Conference_Proceeding._"> <span style="font-size: 18.0pt; color:#008000; text-decoration:none" dir="LTR">&nbsp;&nbsp;&nbsp;&nbsp; </span> <span style="font-size: 18.0pt; color: red; text-decoration:none" dir="LTR"> <font color="#008000">I</font><span style="font-size: 18.0pt; color: red; " dir="LTR"><font color="#008000">I.</font></span><span style="font-size: 18.0pt; color:#008000; "> </span> <font color="#008000">Papers Published in Conference Proceeding.</font></span></a></i></p> <p class="MsoHeading9" align="center" style="text-align: justify; text-indent: -.75in; page-break-after: avoid; margin-left: .75in; margin-right: 2.2pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr"> &nbsp;</p> <table border="1" width="100%" id="table5"> <tr> <td align="center" height="39" width="21"><b><span class="leftnav_title">#</span></b></td> <td width="252" height="39"> <p align="center"><b>Paper </b> </td> <td width="149" height="39" align="center"> <b>AUTHOR</b></td> <td width="216" height="39" align="center"> <p align="center"><b>Conference </b></td> <td width="66" height="39" align="center"><b>Location</b></td> <td align="center"><b>Date</b></td> </tr> <tr> <td align="center" width="21">1</td> <td width="252"> <span style="font-family: Times New Roman" dir="LTR"><i> <a href="marhoun2-1.htm"><u>Pressure-Volume-Temperature Correlations for Saudi Crude Oils,</u></a></i></span></td> <td width="149" align="center"> <span style="font-family: Times New Roman" dir="LTR"><b>Al-Marhoun, M.A.</b></span></td> <td width="216" align="center"> <p align="center"><span style="font-family: Times New Roman" dir="LTR"> 4<sup>th</sup> SPE </span> <span style="font-family: Times New Roman"> Middle East Oil Technical Conference &amp; Exhibition</span></td> <td width="66" align="center"> <span style="font-family: Times New Roman"> Bahrain</span></td> <td align="center"> <span style="font-family: Times New Roman"> 11-14, March&nbsp; 1985</span></td> </tr> <tr> <td align="center" width="21">2</td> <td width="252"> <span style="font-family: Times New Roman"> <u> <i> <a href="marhoun2-2.htm">&quot;Viscosity Correlations for Saudi Arabian Crude Oils,&quot;</a></i></u></span></td> <td width="149" align="center"> <span style="font-family: Times New Roman"> <b>Khan, S.A., Al-Marhoun, M.A., Duffuaa, S.O., and Abu-Khamsin, S.A</b>.</span></td> <td width="216" align="center"> <p align="center"> <span style="font-family: Times New Roman">5<sup>th</sup> SPE Middle East Oil Technical Conference &amp; Exhibition</span></td> <td width="66" align="center"> <span style="font-family: Times New Roman"> Bahrain</span></td> <td align="center"> <span style="font-family: Times New Roman">7-9, March 1987</span></td> </tr> <tr> <td align="center" width="21">3</td> <td width="252"> <i><u> <span style="font-size: 12.0pt; font-family: Times New Roman; "> <a href="marhoun2-3.htm">&nbsp;A New Correlation for Gas-condensate Dewpoint Pressure Prediction,</a></span></u></i></td> <td width="149" align="center"> <span style="font-family: Times New Roman" dir="LTR"> <b>Humoud A. A.&nbsp; and Al-Marhoun, M.A.</b></span></td> <td width="216" align="center"> <p align="center"> <span style="font-family: Times New Roman" dir="LTR"> 12<sup>th</sup>&nbsp; Middle East Oil Show &amp; Conference</span></td> <td width="66" align="center"> <span style="font-family: Times New Roman"> Bahrain</span></td> <td align="center"> <span style="font-family: Times New Roman" dir="LTR"> 17-20 March 2001</span></td> </tr> <tr> <td align="center" width="21">4</td> <td width="252"> <span style="font-family: Times New Roman" dir="LTR"> <u><i> <a href="marhoun2-4.htm">Adjustment of Differential Liberation Data to Separator Conditions,</a></i></u></span></td> <td width="149" align="center"> <span style="font-family: Times New Roman" dir="LTR"><b>Al-Marhoun, M.A.</b></span></td> <td width="216" align="center"> <p align="center"> <span style="font-family: Times New Roman" dir="LTR"> 12<sup>th</sup>&nbsp; Middle East Oil Show &amp; Conference</span></td> <td width="66" align="center"> <span style="font-family: Times New Roman"> Bahrain</span></td> <td align="center"> <span style="font-family: Times New Roman" dir="LTR"> 17-20 March 2001</span></td> </tr> <tr> <td align="center" width="21">5</td> <td width="252"> <span style="font-family: Times New Roman" dir="LTR"> <i> <a href="marhoun2-5.htm"> <u> Prediction of Oil PVT Properties Using Neural Networks</u></a></i></span></td> <td width="149" align="center"> <span style="font-family: Times New Roman" dir="LTR"> <b>Osman, E.A., Abdel-Wahhab, O.A. and Al-Marhoun, M.A.</b></span></td> <td width="216" align="center"> <p align="center"> <span style="font-family: Times New Roman" dir="LTR"> 12<sup>th</sup>&nbsp; Middle East Oil Show &amp; Conference</span></td> <td width="66" align="center"> <span style="font-family: Times New Roman"> Bahrain</span></td> <td align="center"> <span style="font-family: Times New Roman" dir="LTR"> 17-20 March 2001</span></td> </tr> <tr> <td align="center" width="21">6</td> <td width="252"> <span style="font-family: Times New Roman" dir="LTR"> <i><a href="marhoun2-6.htm"><u> Using Artificial Neural Networks to Develop New PVT Correlations for Saudi Crude Oils,</u></a></i></span></td> <td width="149" align="center"> <span style="font-family: Times New Roman" dir="LTR"> <b>Al-Marhoun, M.A. and Osman E.A.</b></span></td> <td width="216" align="center"> <p align="center"> <span style="font-family: Times New Roman" dir="LTR"> 10<sup>th</sup> Abu Dhabi International Petroleum Exhibition and Conference</span></td> <td width="66" align="center"> <span style="font-family: Times New Roman" dir="LTR"> Abu Dhabi, UAE</span></td> <td align="center"> <span style="font-family: Times New Roman" dir="LTR"> 13-16 October 2002</span></td> </tr> <tr> <td align="center" width="21">7</td> <td width="252"> <a href="marhoun2-7.htm"> <span style="font-family: Times New Roman" dir="LTR"> <i><u>Evaluation of Mathematical Models of PVT Properties for </u></i> </span> <i> <u> <span style="font-family: Times New Roman"> Middle East and Canadian Crude Oils,</span></u></i></a></td> <td width="149" align="center"> <span style="font-family: Times New Roman" dir="LTR"><b>Al-Marhoun, M.A.</b></span></td> <td width="216" align="center"> <span style="font-family: Times New Roman"> SPE Technical Symposium of Saudi Arabia Section </span></td> <td width="66" align="center"> <span style="font-family: Times New Roman"> Dhahran, Saudi Arabia</span></td> <td align="center"> <span style="font-family: Times New Roman"> 7-9<sup> </sup>June 2003</span></td> </tr> <tr> <td align="center" width="21">8</td> <td width="252"> <span style="font-family: Times New Roman" dir="LTR"> <i><a href="marhoun2-8.htm"><u> The Coefficient of Isothermal Compressibility of Black Oils,</u></a></i></span></td> <td width="149" align="center"> <span style="font-family: Times New Roman" dir="LTR"><b>Al-Marhoun, M.A.</b></span></td> <td width="216" align="center"> <span style="font-family: Times New Roman" dir="LTR"> 13<sup>th </sup>SPE Middle East Oil Show &amp; Conference</span></td> <td width="66" align="center"> <span style="font-family: Times New Roman"> Bahrain</span></td> <td align="center"> <span style="font-family: Times New Roman"> 9-12 June 2003</span></td> </tr> <tr> <td align="center" width="21">9</td> <td width="252"> <span style="font-family: Times New Roman" dir="LTR"> <u> <i><a href="marhoun2-9.htm">Artificial Neural Networks Models for Predicting PVT Properties of Oil Field Brines,</a></i></u></span></td> <td width="149" align="center"> <span style="font-family: Times New Roman" dir="LTR"> <b>Osman, E.A. and Al-Marhoun, M.A.</b></span></td> <td width="216" align="center"> <span style="font-family: Times New Roman" dir="LTR"> 14<sup>th </sup>SPE Middle East Oil Show &amp; Conference</span></td> <td width="66" align="center"> <span style="font-family: Times New Roman"> Bahrain</span></td> <td align="center"><span style="font-family: Times New Roman" dir="LTR"> 12-15 March 2005</span></td> </tr> <tr> <td align="center" width="21">10</td> <td width="252"> <span style="font-family:&quot;Times New Roman&quot;" dir="LTR"> <i><a href="marhoun2-10.htm"><u> Evaluation of Below Bubble Point Viscosity Correlations and Construction of a New Neural Network Model,</u></a></i></span></td> <td width="149" align="center"> <span style="font-family:&quot;Times New Roman&quot;" dir="LTR"> <b>Ayoub, M.A., Raja, D.M., and Al-Marhoun, M.A.</b></span></td> <td width="216" align="center"> <span style="font-family:&quot;Times New Roman&quot;" dir="LTR"> Asia Pacific Oil and Gas Conference and Exhibition</span></td> <td width="66" align="center"> <span style="font-family:&quot;Times New Roman&quot;">Jakarta, Indonesia.</span></td> <td align="center"> <span style="font-family:&quot;Times New Roman&quot;" dir="LTR"> 30 October-</span><span style="font-family:&quot;Times New Roman&quot;">1 November 2007</span></td> </tr> </table> <p class="MsoNormal" style="text-align: justify; text-kashida: 0%; text-indent: -27.0pt; margin-left: 27.0pt; margin-right: -4.05pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr">&nbsp;</p> <p class="MsoNormal" style="text-kashida: 0%; text-indent: -27.0pt; margin-left: 27.0pt; margin-right: -4.05pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr" align="center"> <b><u><font color="#008000" face="Arno Pro Caption"><a href="#top"> <font color="#008000">Top</font></a></font></u></b></p> <hr color="#000000" dir="ltr" size="1"> <p class="MsoNormal" style="text-kashida: 0%; text-indent: -27.0pt; margin-left: 27.0pt; margin-right: -4.05pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr" align="left"> &nbsp;</p> <p class="MsoNormal" style="text-kashida: 0%; text-indent: -27.0pt; margin-left: 27.0pt; margin-right: -4.05pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr" align="left"> <i> <span style="font-variant: normal; font-weight: normal; font-size: 18.0pt; font-family: Times New Roman; color: #008000"> <a name="III . Public Seminars">III . Public Seminars</a></span></i></p> <p class="MsoNormal" style="text-kashida: 0%; text-indent: -27.0pt; margin-left: 27.0pt; margin-right: -4.05pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr" align="left"> &nbsp;</p> <table border="1" width="100%" id="table4"> <tr> <td align="center" height="39" width="25"><b><span class="leftnav_title">#</span></b></td> <td width="353" height="39"><b>&nbsp;&nbsp; Subject</b></td> <td width="126" height="39" align="center"> <b>Speaker</b></td> <td width="190" height="39" align="center"> <p>&nbsp;</td> <td width="100" height="39" align="center"><b>Date</b></td> </tr> <tr> <td align="center" width="25">1</td> <td width="353"> <span style="font-family: Times New Roman" dir="LTR"> <u><i><a href="Marhoun3_1.pdf">Reservoir Fluid Properties - State of the art and outlook for future development,</a></i></u></span></td> <td width="126" align="center"> <span style="font-style: normal; font-variant: normal; font-weight: normal; font-family: Times New Roman"> &nbsp;</span><span style="font-family: Times New Roman" dir="LTR"><b>Al-Marhoun, M.A</b></span></td> <td width="190" align="center"> <span style="font-family: Times New Roman"> Distinguished Lecturer Program.</span></td> <td width="100" align="center"> <span style="font-family: Times New Roman"> 2001 2002</span></td> </tr> <tr> <td align="center" width="25">2</td> <td width="353"> <span style="font-family: Times New Roman" dir="LTR"> <i><u>PVT Input Data: Accuracy and Limitation,&quot;</u></i></span></td> <td width="126" align="center"> <span style="font-style: normal; font-variant: normal; font-weight: normal; font-family: Times New Roman"> &nbsp;</span><span style="font-family: Times New Roman" dir="LTR"><b>Al-Marhoun, M.A</b></span></td> <td width="190" align="center"> <span style="font-family: Times New Roman" dir="LTR"> Reservoir Simulation Workshop</span></td> <td width="100" align="center"> <span style="font-family: Times New Roman"> &nbsp;4-5 December 2004.</span></td> </tr> </table> <p class="MsoNormal" style="text-kashida: 0%; text-indent: -27.0pt; margin-left: 27.0pt; margin-right: -4.05pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr" align="left"> &nbsp;</p> <p class="MsoHeading9" align="center" style="text-indent: -.75in; page-break-after: avoid; text-align: left; margin-left: .75in; margin-right: 10; margin-top: 0in; margin-bottom: .0001pt" dir="ltr"> &nbsp;</p> <p class="MsoNormal" style="text-kashida: 0%; text-indent: -27.0pt; margin-left: 27.0pt; margin-right: -4.05pt; margin-top: 0in; margin-bottom: .0001pt" dir="ltr" align="center"> <b><u><font color="#008000" face="Arno Pro Caption"><a href="#top"> <font color="#008000">Top</font></a></font></u></b></p> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr> <td width="1000" height="51" valign="top" colspan="2"> <table border="1" cellspacing="1" width="103%" id="AutoNumber5" height="1" style="border-width: 0"> <tr> <td width="16%" height="1" style="border-style: none; border-width: medium"> </td> <td width="106%" height="1" style="border-style: none; border-width: medium" colspan="4"> <table border="1" cellspacing="1" width="101%" id="AutoNumber6" style="border-width: 0"> <tr> <td width="86%" style="border-style: none; border-width: medium"> <hr color="#000000" dir="ltr"> </td> <td width="7%" style="border-style: none; border-width: medium">&nbsp;</td> <td width="6%" style="border-style: none; border-width: medium">&nbsp;</td> </tr> </table> </td> </tr> <tr> <td width="16%" height="1" style="border-style: none; border-width: medium"> </td> <td width="3%" height="1" style="border-style: none; border-width: medium"> </td> <td width="7%" height="1" style="border-style: none; border-width: medium"><span dir="LTR"><b><font size="2"> <img border="0" src="small%20rest.gif" align="left" width="50" height="40"></font></b></span></td> <td width="29%" height="1" style="border-style: none; border-width: medium"><span dir="LTR"><b><font size="2">© 2000-2008&nbsp;&nbsp; Reservoir Technologies.</font></b></span><span dir="ltr"><b><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://www.restec.com">www.restec.com</a>&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://www.restec.biz">www.restec.biz</a> </font></b></span></td> <td width="114%" height="1" style="border-style: none; border-width: medium"> </td> <td width="25%" height="1" style="border-style: none; border-width: medium"> </td> </tr> </table> </td> </tr> </table> </body> </html>