<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Conversion formula in SAS Health and Life Sciences</title>
    <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Conversion-formula/m-p/8316#M820</link>
    <description>I found this bye google searching the internet for &lt;BR /&gt;
&lt;BR /&gt;
convert dbspl to pascal units&lt;BR /&gt;
&lt;BR /&gt;
"'Pa' is the abbreviation for Pascal, which is a unit of pressure that is equivalent to 93.9794 dB  SPL (Sound Pressure Level)."&lt;BR /&gt;
&lt;BR /&gt;
so, the SAS statement is&lt;BR /&gt;
Pa=93.9794* &lt;YOUR dbspl="" variable=""&gt;;&lt;BR /&gt;
&lt;BR /&gt;
If you need to know how to save a pemanent SAS dataset, you probably need a short cours e on introductory SAS.  Cody's book might be useful there.&lt;/YOUR&gt;</description>
    <pubDate>Wed, 02 Apr 2008 15:50:12 GMT</pubDate>
    <dc:creator>Doc_Duke</dc:creator>
    <dc:date>2008-04-02T15:50:12Z</dc:date>
    <item>
      <title>Conversion formula</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Conversion-formula/m-p/8315#M819</link>
      <description>I presently have a SAS dataset of audiograms with a numeric var named SPL.  It contains values which represent sound pressure levels measured in decibels (dBSPL).  I need to convert the values of SPL to sound pressure measured in Pa (Pascal) or &lt;U&gt;u&lt;/U&gt;P (micropascals) and store the converted values for future analysis.  Any idea how to help this novice do this in SAS?&lt;BR /&gt;
&lt;BR /&gt;
Thanks</description>
      <pubDate>Tue, 01 Apr 2008 16:41:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Conversion-formula/m-p/8315#M819</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-04-01T16:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion formula</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Conversion-formula/m-p/8316#M820</link>
      <description>I found this bye google searching the internet for &lt;BR /&gt;
&lt;BR /&gt;
convert dbspl to pascal units&lt;BR /&gt;
&lt;BR /&gt;
"'Pa' is the abbreviation for Pascal, which is a unit of pressure that is equivalent to 93.9794 dB  SPL (Sound Pressure Level)."&lt;BR /&gt;
&lt;BR /&gt;
so, the SAS statement is&lt;BR /&gt;
Pa=93.9794* &lt;YOUR dbspl="" variable=""&gt;;&lt;BR /&gt;
&lt;BR /&gt;
If you need to know how to save a pemanent SAS dataset, you probably need a short cours e on introductory SAS.  Cody's book might be useful there.&lt;/YOUR&gt;</description>
      <pubDate>Wed, 02 Apr 2008 15:50:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Conversion-formula/m-p/8316#M820</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2008-04-02T15:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion formula</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Conversion-formula/m-p/8317#M821</link>
      <description>Unfortunately its not that simple. This is decibled sound pressure with a reference pressure of 0.00002Pa, it is not a simple multiplicative conversion factor.&lt;BR /&gt;
&lt;BR /&gt;
dbSPL = 20 * LOG10(Pa/0.00002)&lt;BR /&gt;
&lt;BR /&gt;
So the conversion is going to be&lt;BR /&gt;
&lt;BR /&gt;
X = Pressure in Pa&lt;BR /&gt;
Y = Presseure in dbSPL&lt;BR /&gt;
&lt;BR /&gt;
Y=20*LOG10(X/0.00002)&lt;BR /&gt;
&lt;BR /&gt;
Y/20 = LOG10(X/0.00002)&lt;BR /&gt;
&lt;BR /&gt;
10^(Y/20)=X/0.00002&lt;BR /&gt;
&lt;BR /&gt;
X = 0.00002 * 10^(Y/20)&lt;BR /&gt;
&lt;BR /&gt;
Or in SAS Functions&lt;BR /&gt;
&lt;BR /&gt;
X = 0.00002 * (10**(Y/20))&lt;BR /&gt;
&lt;BR /&gt;
Ike Eisenhauer&lt;BR /&gt;
&lt;BR /&gt;
Message was edited by: WDEisenhauer</description>
      <pubDate>Wed, 02 Apr 2008 19:23:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Conversion-formula/m-p/8317#M821</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-04-02T19:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion formula</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Conversion-formula/m-p/8318#M822</link>
      <description>Thanks!  I actually had the conversion coded as:&lt;BR /&gt;
X = 20*(10**(Y/20))/1000000;&lt;BR /&gt;
&lt;BR /&gt;
Same result, but your's looks cleaner.</description>
      <pubDate>Thu, 03 Apr 2008 20:57:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Conversion-formula/m-p/8318#M822</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-04-03T20:57:47Z</dc:date>
    </item>
  </channel>
</rss>

