<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Wireless Wave &#187; Network</title>
	<atom:link href="http://matinrad.com/index.php/category/network/feed/" rel="self" type="application/rss+xml" />
	<link>http://matinrad.com</link>
	<description>Arash, wireless and more</description>
	<lastBuildDate>Tue, 31 Aug 2010 15:31:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to find a specific header in packet in NS-3</title>
		<link>http://matinrad.com/index.php/2010/08/how-to-find-a-packet-header-in-ns-3/</link>
		<comments>http://matinrad.com/index.php/2010/08/how-to-find-a-packet-header-in-ns-3/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 15:26:15 +0000</pubDate>
		<dc:creator>Arash</dc:creator>
				<category><![CDATA[NS-3]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Simulation]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Header]]></category>
		<category><![CDATA[packet]]></category>

		<guid isPermaLink="false">http://matinrad.com/?p=160</guid>
		<description><![CDATA[You can scan through headers like this: PacketMetadata::ItemIterator metadataIterator = copy-&#62;BeginItem(); PacketMetadata::Item item; while (metadataIterator.HasNext()) { item = metadataIterator.Next(); NS_LOG_FUNCTION("item name: " &#60;&#60; item.tid.GetName()); if(item.tid.GetName() == "ns3::Ipv4Header") { NS_LOG_DEBUG("Header Found"); m_isIpv4HeaderFound = true; break; } } In above code I tried to find  Ipv4Header And it is possible to access it like: if (m_isIpv4HeaderFound) { [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2010%2F08%2Fhow-to-find-a-packet-header-in-ns-3%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2010%2F08%2Fhow-to-find-a-packet-header-in-ns-3%2F&amp;source=matinrad&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p>You can scan through headers like this:</p>
<p><code></p>
<div id="_mcePaste">
<div id="_mcePaste">PacketMetadata::ItemIterator metadataIterator = copy-&gt;BeginItem();</div>
<div id="_mcePaste">PacketMetadata::Item item;</div>
<div id="_mcePaste">while (metadataIterator.HasNext())</div>
<div id="_mcePaste">{</div>
<div id="_mcePaste">item = metadataIterator.Next();</div>
<div id="_mcePaste">NS_LOG_FUNCTION("item name: " &lt;&lt; item.tid.GetName());</div>
<div id="_mcePaste">if(item.tid.GetName() == "ns3::Ipv4Header")</div>
<div id="_mcePaste">{</div>
<div id="_mcePaste">NS_LOG_DEBUG("Header Found");</div>
<div id="_mcePaste">m_isIpv4HeaderFound = true;</div>
<div id="_mcePaste">break;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">}</div>
</div>
<p></code></p>
<p>In above code I tried to find  <span style="font-family: monospace;">Ipv4Header</span></p>
<p>And it is possible to access it like:</p>
<p><code><br />
     if (m_isIpv4HeaderFound)<br />
       {<br />
       NS_LOG_DEBUG("Header Found");<br />
         Callback<ObjectBase *> constructor = item.tid.GetConstructor();</p>
<p>         NS_ASSERT(!constructor.IsNull());<br />
         ObjectBase *instance = constructor();<br />
         NS_ASSERT(instance != 0);<br />
         Ipv4Header *ipv4Header = dynamic_cast<Ipv4Header *> (instance);<br />
         NS_ASSERT(ipv4Header != 0);<br />
         ipv4Header->Deserialize(item.current);<br />
         delete ipv4Header;<br />
       }<br />
</code></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://matinrad.com/index.php/2010/08/how-to-find-a-packet-header-in-ns-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NS-3 (NS3) And Eclipse (Part I)</title>
		<link>http://matinrad.com/index.php/2010/02/ns-3-and-eclipse/</link>
		<comments>http://matinrad.com/index.php/2010/02/ns-3-and-eclipse/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 17:37:19 +0000</pubDate>
		<dc:creator>Arash</dc:creator>
				<category><![CDATA[My notes]]></category>
		<category><![CDATA[NS-3]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Mercurial]]></category>
		<category><![CDATA[NS3]]></category>
		<category><![CDATA[NS3 simulator]]></category>

		<guid isPermaLink="false">http://matinrad.com/?p=145</guid>
		<description><![CDATA[This is a short explanation on how I added NS-3 (version 3.6) to Eclipse (Galileo). I use first part from NS-3 Wiki Adding Mercurial to Eclipse First download eclipse IDE for C++ developers from http://www.eclipse.org * Install eclipse into you operating system * Install mercurial eclipse plugin: - Go to help-&#62;software update - Click on [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2010%2F02%2Fns-3-and-eclipse%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2010%2F02%2Fns-3-and-eclipse%2F&amp;source=matinrad&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p>This is a short explanation on how I added NS-3 (version 3.6) to Eclipse (Galileo). I use first part from <a title="NS-3 Wiki- How to use Eclipse with NS-3" href="http://www.nsnam.org/wiki/index.php/HOWTO_configure_eclipse_with_ns-3" target="_blank">NS-3 Wiki</a></p>
<p><em><strong>Adding Mercurial to Eclipse</strong></em></p>
<blockquote><p>First download eclipse IDE for C++ developers from <a title="http://www.eclipse.org" rel="nofollow" href="http://www.eclipse.org/">http://www.eclipse.org</a><br />
* Install eclipse into you operating system<br />
* Install mercurial eclipse plugin:<br />
- Go to help-&gt;software update<br />
- Click on available software<br />
- Click on add a site<br />
- Add <a title="http://www.vectrace.com/eclipse-update/" rel="nofollow" href="http://www.vectrace.com/eclipse-update/">http://www.vectrace.com/eclipse-update/</a> taken from <a title="http://www.vectrace.com/mercurialeclipse/" rel="nofollow" href="http://www.vectrace.com/mercurialeclipse/">http://www.vectrace.com/mercurialeclipse/</a> then click on mercurialeclipse and check the box and click on install<br />
* We suppose that you already have mercurial installed on your machine</p></blockquote>
<p><em><strong>Making a Clone of NS-3 in Eclipse</strong></em></p>
<p>After you that you need to add the NS-3 from the repository:</p>
<p>Select: New -&gt; Other, and it would be like picture below:</p>
<div id="attachment_147" class="wp-caption aligncenter" style="width: 310px"><a href="http://matinrad.com/wp-content/uploads/2010/02/ns-3_Eclipse_mercurial.png"><img class="size-medium wp-image-147" title="Eclipse mercurial new project" src="http://matinrad.com/wp-content/uploads/2010/02/ns-3_Eclipse_mercurial-300x238.png" alt="" width="300" height="238" /></a><p class="wp-caption-text">Eclipse mercurial after new project</p></div>
<p style="text-align: center;">
<p>Then press next. now you need to enter &#8220;Repository location URL&#8221; that is: <em><strong>http://code.nsnam.org/ns-3-dev</strong></em></p>
<p>in case you want to have different versions of the NS-3 you need to define the &#8220;Clone directory name&#8221;, in the figure below I chose <em><strong>ns-3.7-dev </strong></em></p>
<div id="attachment_148" class="wp-caption aligncenter" style="width: 281px"><a href="http://matinrad.com/wp-content/uploads/2010/02/2.png"><img class="size-medium wp-image-148" title="Clone the NS-3 to workspace" src="http://matinrad.com/wp-content/uploads/2010/02/2-271x300.png" alt="" width="271" height="300" /></a><p class="wp-caption-text">Clone the NS-3 to workspace</p></div>
<p>Now you just need to wait for the project files be cloned. then you will find a copy of the project you wanted like below:</p>
<div id="attachment_149" class="wp-caption aligncenter" style="width: 310px"><a href="http://matinrad.com/wp-content/uploads/2010/02/4.png"><img class="size-medium wp-image-149" title="A clone made of NS-3.7-dev in clipse" src="http://matinrad.com/wp-content/uploads/2010/02/4-300x268.png" alt="" width="300" height="268" /></a><p class="wp-caption-text">A clone made of NS-3.7-dev in clipse</p></div>
<p>Since the folder is not know as a C++ project it is necessary to be converted to so right click on project name and select: new -&gt; convert to a C/C++ project the rest of settings should be same as picture below:</p>
<div id="attachment_150" class="wp-caption aligncenter" style="width: 280px"><a href="http://matinrad.com/wp-content/uploads/2010/02/5.png"><img class="size-medium wp-image-150" title="Convert to C++ project" src="http://matinrad.com/wp-content/uploads/2010/02/5-270x300.png" alt="" width="270" height="300" /></a><p class="wp-caption-text">Convert to C++ project</p></div>
<p><em><strong>Configuring the Build system</strong></em></p>
<p>We know that build system for NS-3 is Waf so we need to change the build configuration from build/make to Waf. so right click on project and select the properties then choose the &#8220;C/C++ Build&#8221;.</p>
<p>In the &#8220;<strong>Builder setup</strong>&#8221; choose &#8220;<strong>External Builder</strong>&#8221;</p>
<p>Remove the check from &#8220;<strong>Use default build command</strong>&#8221;</p>
<p>change &#8220;<strong>Build command</strong>&#8221; to<em><strong> ${workspace_loc:/ns-3.7-dev/waf}</strong></em></p>
<div id="attachment_152" class="wp-caption aligncenter" style="width: 310px"><a href="http://matinrad.com/wp-content/uploads/2010/02/8.png"><img class="size-medium wp-image-152" title="Behaviour setting " src="http://matinrad.com/wp-content/uploads/2010/02/8-300x195.png" alt="" width="300" height="195" /></a><p class="wp-caption-text">Behaviour setting</p></div>
<p>in Behavior tab, clear both &#8220;<strong>Build on resource save (Auto save)&#8221; </strong>and &#8220;<strong>Build (Incremental build)</strong></p>
<p><strong></p>
<div id="attachment_152" class="wp-caption aligncenter" style="width: 310px"><strong><a href="http://matinrad.com/wp-content/uploads/2010/02/8.png"><img class="size-medium wp-image-152" title="Behaviour setting " src="http://matinrad.com/wp-content/uploads/2010/02/8-300x195.png" alt="" width="300" height="195" /></a></strong><p class="wp-caption-text">Behaviour setting</p></div>
<p></strong></p>
<p>Now all you need to do is to push  <em>apply </em>and<em> Ok</em>. you will notice that Waf starts to build the whole project.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://matinrad.com/index.php/2010/02/ns-3-and-eclipse/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>(Ke Liu&#8217;s) NS2 Wireless trace meaning and explanation</title>
		<link>http://matinrad.com/index.php/2009/12/ke-lius-ns2-wireless-trace-meaning-and-explanation/</link>
		<comments>http://matinrad.com/index.php/2009/12/ke-lius-ns2-wireless-trace-meaning-and-explanation/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 11:47:54 +0000</pubDate>
		<dc:creator>Arash</dc:creator>
				<category><![CDATA[My notes]]></category>
		<category><![CDATA[ns2]]></category>
		<category><![CDATA[trace]]></category>

		<guid isPermaLink="false">http://matinrad.com/?p=142</guid>
		<description><![CDATA[ACTION: [s&#124;r&#124;D]: s -- sent, r -- received, D -- dropped WHEN: the time when the action happened WHERE: the node where the action happened LAYER: AGT -- application, RTR -- routing, LL -- link layer (ARP is done here) IFQ -- outgoing packet queue (between link and mac layer) MAC -- mac, PHY -- [...]


Related posts:<ol><li><a href='http://matinrad.com/index.php/2009/10/ieee-802-11-medium-access-control/' rel='bookmark' title='Permanent Link: IEEE 802.11 Medium Access Control'>IEEE 802.11 Medium Access Control</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2009%2F12%2Fke-lius-ns2-wireless-trace-meaning-and-explanation%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2009%2F12%2Fke-lius-ns2-wireless-trace-meaning-and-explanation%2F&amp;source=matinrad&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<blockquote>
<pre><span><span style="color: brown;">ACTION:	[s|r|D]: s -- sent, r -- received, D -- dropped
WHEN:	the time when the action happened
WHERE:	the node where the action happened
LAYER:	AGT -- application,
	RTR -- routing,
	LL  -- link layer (ARP is done here)
	IFQ -- outgoing packet queue
               (between link and mac layer)
	MAC -- mac,
	PHY -- physical
flags:
SEQNO:	the sequence number of the packet
TYPE:	the packet type
		cbr -- CBR data stream packet
		DSR -- DSR routing packet (control packet
                generated by routing)
		RTS -- RTS packet generated by MAC 802.11
		ARP -- link layer ARP packet
SIZE:	the size of packet at current layer, when packet goes down,
        size increases, goes up size decreases
[a b c d]:	a -- the packet duration in mac layer header
		b -- the mac address of destination
		c -- the mac address of source
		d -- the mac type of the packet body
flags:
[......]:	[
		source node ip : port_number
		destination node ip (-1 means broadcast) : port_number
		ip header ttl
		ip of next hop (0 means node 0 or broadcast)
		]
</span></span></pre>
</blockquote>
<p>via <a href="http://www.cs.binghamton.edu/~kliu/research/ns2code/index.html">Ke Liu&#8217;s NS2 Code and Q&amp;A</a>.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>

<p>Related posts:<ol><li><a href='http://matinrad.com/index.php/2009/10/ieee-802-11-medium-access-control/' rel='bookmark' title='Permanent Link: IEEE 802.11 Medium Access Control'>IEEE 802.11 Medium Access Control</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://matinrad.com/index.php/2009/12/ke-lius-ns2-wireless-trace-meaning-and-explanation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3G and 4G Wireless Blog: OFDM and OFDMA: The Difference</title>
		<link>http://matinrad.com/index.php/2009/12/3g-and-4g-wireless-blog-ofdm-and-ofdma-the-difference/</link>
		<comments>http://matinrad.com/index.php/2009/12/3g-and-4g-wireless-blog-ofdm-and-ofdma-the-difference/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 10:41:47 +0000</pubDate>
		<dc:creator>Arash</dc:creator>
				<category><![CDATA[My notes]]></category>
		<category><![CDATA[Wireless]]></category>
		<category><![CDATA[IEEE 802.16e]]></category>
		<category><![CDATA[OFDM]]></category>
		<category><![CDATA[OFDMA]]></category>

		<guid isPermaLink="false">http://matinrad.com/?p=140</guid>
		<description><![CDATA[A very good article about OFDM and OFDMA : 3G and 4G Wireless Blog: OFDM and OFDMA: The Difference. Related posts:ScribeFire &#8211; a Semi Desktop blog client Related posts brought to you by Yet Another Related Posts Plugin.


Related posts:<ol><li><a href='http://matinrad.com/index.php/2009/10/blog-client-ubuntu-scribefire/' rel='bookmark' title='Permanent Link: ScribeFire &#8211; a Semi Desktop blog client'>ScribeFire &#8211; a Semi Desktop blog client</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2009%2F12%2F3g-and-4g-wireless-blog-ofdm-and-ofdma-the-difference%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2009%2F12%2F3g-and-4g-wireless-blog-ofdm-and-ofdma-the-difference%2F&amp;source=matinrad&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p>A very good article about OFDM and OFDMA :</p>
<p><a href="http://3g4g.blogspot.com/2007/06/ofdm-and-ofdma-difference.html">3G and 4G Wireless Blog: OFDM and OFDMA: The Difference</a>.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>

<p>Related posts:<ol><li><a href='http://matinrad.com/index.php/2009/10/blog-client-ubuntu-scribefire/' rel='bookmark' title='Permanent Link: ScribeFire &#8211; a Semi Desktop blog client'>ScribeFire &#8211; a Semi Desktop blog client</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://matinrad.com/index.php/2009/12/3g-and-4g-wireless-blog-ofdm-and-ofdma-the-difference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smart posters and NFC</title>
		<link>http://matinrad.com/index.php/2009/11/smart-posters-and-nfc/</link>
		<comments>http://matinrad.com/index.php/2009/11/smart-posters-and-nfc/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 14:29:46 +0000</pubDate>
		<dc:creator>Arash</dc:creator>
				<category><![CDATA[My notes]]></category>
		<category><![CDATA[NFC]]></category>
		<category><![CDATA[Our works]]></category>
		<category><![CDATA[RFID]]></category>
		<category><![CDATA[Smart poster]]></category>

		<guid isPermaLink="false">http://matinrad.com/?p=130</guid>
		<description><![CDATA[Years ago we could listen to part of the concert from its poster in Sci-Fi Movies, and now it is really possible. Smart posters are equipped with a tag to provide a wide range of information such as audio, video, phone number, contact information, map or simply text. Suppose you find a smart poster advertising [...]


Related posts:<ol><li><a href='http://matinrad.com/index.php/2009/10/near-field-communication-what-is-nfc/' rel='bookmark' title='Permanent Link: Near Field Communication, What is NFC?'>Near Field Communication, What is NFC?</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2009%2F11%2Fsmart-posters-and-nfc%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2009%2F11%2Fsmart-posters-and-nfc%2F&amp;source=matinrad&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p>Years ago we could listen to part of the concert from its poster in Sci-Fi Movies, and now it is really possible. Smart posters are equipped with a tag to provide a wide range of information such as audio, video, phone number, contact information, map or simply text.</p>
<p>Suppose you find a smart poster advertising a new mall somewhere, you can either find the address in bottom of the map or just close your phone to read the address, a small map and a picture of the building even a contact phone. Cool! now we know all we need to get to the mall.<br />
To surprise the seller can offer a discount coupon to those who has read the tag.</p>
<p>To get the idea watch the video showing the function (not by me):</p>
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Z3xdEFg0Z2g&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/Z3xdEFg0Z2g&amp;hl=en&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>

<p>Related posts:<ol><li><a href='http://matinrad.com/index.php/2009/10/near-field-communication-what-is-nfc/' rel='bookmark' title='Permanent Link: Near Field Communication, What is NFC?'>Near Field Communication, What is NFC?</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://matinrad.com/index.php/2009/11/smart-posters-and-nfc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Z-Wave and Zensys</title>
		<link>http://matinrad.com/index.php/2009/10/z-wave-and-zensys/</link>
		<comments>http://matinrad.com/index.php/2009/10/z-wave-and-zensys/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 22:39:21 +0000</pubDate>
		<dc:creator>Arash</dc:creator>
				<category><![CDATA[Wireless]]></category>
		<category><![CDATA[z-wave]]></category>

		<guid isPermaLink="false">http://matinrad.com/?p=122</guid>
		<description><![CDATA[I found out that there is something called Z-Wave from Zensys, which claims is much better than ZigBee due to its operating frequencies which are at 900 and 800 bands, hence it is isolated from WiFi band (no more potential disturbance.) According to Zensys: Z-Wave technology dramatically extends the possibilities of today&#8217;s home security systems.  [...]


Related posts:<ol><li><a href='http://matinrad.com/index.php/2009/10/ns2-zigbee-and-wpan-udin-harun/' rel='bookmark' title='Permanent Link: NS2 ,ZigBee and WPAN « Udin Harun'>NS2 ,ZigBee and WPAN « Udin Harun</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2009%2F10%2Fz-wave-and-zensys%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2009%2F10%2Fz-wave-and-zensys%2F&amp;source=matinrad&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p>I found out that there is something called Z-Wave from Zensys, which claims is much better than ZigBee due to its operating frequencies which are at 900 and 800 bands, hence it is isolated from WiFi band (no more potential disturbance.)</p>
<p>According to <a title="Zensys and Z-wave" href="http://web1.zen-sys.com/modules/Z-Wave/?id=22&amp;chk=9569d7392e4f6c2879bdea53d0491d9f" target="_blank">Zensys</a>:</p>
<blockquote><p>Z-Wave technology dramatically extends the possibilities of today&#8217;s home security systems.  Z-Wave lets cameras, sensors and other security components work in concert as a unified system, communicating with each other and with the user whether locally or remotely. A Z-Wave home alert system can also communicate with an outside monitoring agency.</p></blockquote>
<p>&#8211;source <a href="http://www.ifn.et.tu-dresden.de/%7Emarandin/ZigBee/ZigBeeTutorial.html">Simulation of IEEE 802.15.4/ZigBee with Network Simulator-2 (ns-2) &#8211; ZigBee Tutorial</a>.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>

<p>Related posts:<ol><li><a href='http://matinrad.com/index.php/2009/10/ns2-zigbee-and-wpan-udin-harun/' rel='bookmark' title='Permanent Link: NS2 ,ZigBee and WPAN « Udin Harun'>NS2 ,ZigBee and WPAN « Udin Harun</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://matinrad.com/index.php/2009/10/z-wave-and-zensys/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>NS2 ,ZigBee and WPAN « Udin Harun</title>
		<link>http://matinrad.com/index.php/2009/10/ns2-zigbee-and-wpan-udin-harun/</link>
		<comments>http://matinrad.com/index.php/2009/10/ns2-zigbee-and-wpan-udin-harun/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 22:13:28 +0000</pubDate>
		<dc:creator>Arash</dc:creator>
				<category><![CDATA[ZigBee]]></category>
		<category><![CDATA[ns2]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://matinrad.com/?p=120</guid>
		<description><![CDATA[After lots of googling I got this useful blog with lots of must-to-have links for NS2, ZigBee and most of the tools to do the simulation. We are going to have a course project for network simulation on WPAN and ZigBee and these rare resources are very handy to start with. NS2 for IEEE 802.15.4/ZigBee [...]


Related posts:<ol><li><a href='http://matinrad.com/index.php/2009/10/z-wave-and-zensys/' rel='bookmark' title='Permanent Link: Z-Wave and Zensys'>Z-Wave and Zensys</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2009%2F10%2Fns2-zigbee-and-wpan-udin-harun%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2009%2F10%2Fns2-zigbee-and-wpan-udin-harun%2F&amp;source=matinrad&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p>After lots of googling I got<a title="NS2" href="http://alkautsarpens.wordpress.com/ns/" target="_blank"> this useful blog</a> with lots of must-to-have links for NS2, ZigBee and most of the tools to do the simulation.</p>
<p>We are going to have a course project for network simulation on WPAN and ZigBee and these rare resources are very handy to start with.</p>
<blockquote><p><strong>NS2 for IEEE 802.15.4/ZigBee LR-WPANs :</strong></p>
<ol>
<li><a href="http://www.ifn.et.tu-dresden.de/%7Emarandin/ZigBee/ZigBeeSimulation.html">Simulation of  IEEE 802.15./ZigBee With NS-2</a></li>
<li><a href="http://www.ee.washington.edu/research/funlab/802_15_4/">IEEE 802.15.4 Mac Implementation in NS-2</a></li>
<li><a href="http://ees2cy.engr.ccny.cuny.edu/zheng/pub/">Low Rate Wireless Personal Area Networks (LR-WPANs) NS-2 Platform</a></li>
<li><a href="http://www.vaddina.com/pages/Zigbee/snav_1_0.php">Simulative Investigation of ZigBee/802.15.4Zigbee/IEEE 802.15.4<br />
</a></li>
<li><a href="http://www.vaddina.com/pages/Zigbee/snav_1_0.php">Module for NS2 simulator : </a><a href="http://www.cs.uwm.edu/%7Emukul/wpan.html">http://www.cs.uwm.edu/~mukul/wpan.html</a></li>
</ol>
<p><a href="http://alkautsarpens.wordpress.com/ns/">NS « Udin Harun</a></p></blockquote>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>

<p>Related posts:<ol><li><a href='http://matinrad.com/index.php/2009/10/z-wave-and-zensys/' rel='bookmark' title='Permanent Link: Z-Wave and Zensys'>Z-Wave and Zensys</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://matinrad.com/index.php/2009/10/ns2-zigbee-and-wpan-udin-harun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E-payment and m-Wallet</title>
		<link>http://matinrad.com/index.php/2009/10/e-payment-and-m-wallet/</link>
		<comments>http://matinrad.com/index.php/2009/10/e-payment-and-m-wallet/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 22:41:52 +0000</pubDate>
		<dc:creator>Arash</dc:creator>
				<category><![CDATA[My notes]]></category>
		<category><![CDATA[NFC]]></category>
		<category><![CDATA[e-ticket]]></category>
		<category><![CDATA[e-wallet]]></category>
		<category><![CDATA[mobile payment]]></category>
		<category><![CDATA[NFC congress]]></category>
		<category><![CDATA[paypass]]></category>
		<category><![CDATA[paywave]]></category>

		<guid isPermaLink="false">http://matinrad.com/index.php/2009/10/e-payment-and-m-wallet/</guid>
		<description><![CDATA[&#160; E-payment or e-wallet which is actually implemented as m-wallet is the biggest shot of NFC. Use of m-wallet in e-ticketing is replacing the current payment method such as mobile (SMS, web based) payment or using traditional plastic card. New generations of contactless Mastercard (paypass) or Visa (paywave) cards are available in market for customers. [...]


Related posts:<ol><li><a href='http://matinrad.com/index.php/2009/10/near-field-communication-what-is-nfc/' rel='bookmark' title='Permanent Link: Near Field Communication, What is NFC?'>Near Field Communication, What is NFC?</a></li>
<li><a href='http://matinrad.com/index.php/2009/10/nearfield-org-a-research-project-on-nfc/' rel='bookmark' title='Permanent Link: Nearfield.org : A research project on NFC'>Nearfield.org : A research project on NFC</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2009%2F10%2Fe-payment-and-m-wallet%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2009%2F10%2Fe-payment-and-m-wallet%2F&amp;source=matinrad&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<h5>&#160;</h5>
<p>E-payment or e-wallet which is actually implemented as m-wallet is the biggest shot of NFC. Use of m-wallet in e-ticketing is replacing the current payment method such as mobile (SMS, web based) payment or using traditional plastic card. New generations of contactless Mastercard (paypass) or Visa (paywave) cards are available in market for customers. Currently operators are offering mobile payment with NFC-enabled mobile phones. According to reports by 2010 NFC phones are able to replace all kind of payment card or mobile based payment systems.</p>
<p>[<i>NFC Congress, NFC Mobile Payments. </i>[PDF Document] Hagenberg, Austria : TELEFÓNICA CZECH REPUBLIC a.s., 2009]</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>

<p>Related posts:<ol><li><a href='http://matinrad.com/index.php/2009/10/near-field-communication-what-is-nfc/' rel='bookmark' title='Permanent Link: Near Field Communication, What is NFC?'>Near Field Communication, What is NFC?</a></li>
<li><a href='http://matinrad.com/index.php/2009/10/nearfield-org-a-research-project-on-nfc/' rel='bookmark' title='Permanent Link: Nearfield.org : A research project on NFC'>Nearfield.org : A research project on NFC</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://matinrad.com/index.php/2009/10/e-payment-and-m-wallet/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>NFC domino?</title>
		<link>http://matinrad.com/index.php/2009/10/nfc-domino/</link>
		<comments>http://matinrad.com/index.php/2009/10/nfc-domino/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 21:02:19 +0000</pubDate>
		<dc:creator>Arash</dc:creator>
				<category><![CDATA[NFC]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[nearness]]></category>

		<guid isPermaLink="false">http://matinrad.com/index.php/62</guid>
		<description><![CDATA[&#160; Nearness from timo on Vimeo. Related posts:NFC Field : how it looks like in real world Related posts brought to you by Yet Another Related Posts Plugin.


Related posts:<ol><li><a href='http://matinrad.com/index.php/2009/10/nfc-field-how-it-looks-like-in-real-world/' rel='bookmark' title='Permanent Link: NFC Field : how it looks like in real world'>NFC Field : how it looks like in real world</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2009%2F10%2Fnfc-domino%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2009%2F10%2Fnfc-domino%2F&amp;source=matinrad&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p>&#160;</p>
<p> <object width="400" height="225"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=6588461&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=6588461&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=ffffff&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"></embed></object>
<p><a href="http://vimeo.com/6588461">Nearness</a> from <a href="http://vimeo.com/timoarnall">timo</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>

<p>Related posts:<ol><li><a href='http://matinrad.com/index.php/2009/10/nfc-field-how-it-looks-like-in-real-world/' rel='bookmark' title='Permanent Link: NFC Field : how it looks like in real world'>NFC Field : how it looks like in real world</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://matinrad.com/index.php/2009/10/nfc-domino/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Near Field Communication, What is NFC?</title>
		<link>http://matinrad.com/index.php/2009/10/near-field-communication-what-is-nfc/</link>
		<comments>http://matinrad.com/index.php/2009/10/near-field-communication-what-is-nfc/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 20:55:55 +0000</pubDate>
		<dc:creator>Arash</dc:creator>
				<category><![CDATA[NFC]]></category>
		<category><![CDATA[Our works]]></category>
		<category><![CDATA[e-ticket]]></category>
		<category><![CDATA[e-wallet]]></category>
		<category><![CDATA[nfc phone]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[RFID]]></category>
		<category><![CDATA[Smart poster]]></category>

		<guid isPermaLink="false">http://matinrad.com/index.php/59</guid>
		<description><![CDATA[Near field communication is a short range (&#60;20cm) wireless communication system designed for mobile phones or other mobile devices supporting up to 424kbps of data rate. It uses the same proximity technology of RFID working in 13.5MHz. Although standardization of NFC is still in progress, many applications are proposed to use it, mostly focused on [...]


Related posts:<ol><li><a href='http://matinrad.com/index.php/2009/10/nearfield-org-a-research-project-on-nfc/' rel='bookmark' title='Permanent Link: Nearfield.org : A research project on NFC'>Nearfield.org : A research project on NFC</a></li>
<li><a href='http://matinrad.com/index.php/2009/10/e-payment-and-m-wallet/' rel='bookmark' title='Permanent Link: E-payment and m-Wallet'>E-payment and m-Wallet</a></li>
<li><a href='http://matinrad.com/index.php/2009/10/nfc-field-how-it-looks-like-in-real-world/' rel='bookmark' title='Permanent Link: NFC Field : how it looks like in real world'>NFC Field : how it looks like in real world</a></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2009%2F10%2Fnear-field-communication-what-is-nfc%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmatinrad.com%2Findex.php%2F2009%2F10%2Fnear-field-communication-what-is-nfc%2F&amp;source=matinrad&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p>Near field communication is a short range (&lt;20cm) wireless communication system designed for mobile phones or other mobile devices supporting up to 424kbps of data rate. </p>
<p>It uses the same proximity technology of RFID working in 13.5MHz. Although standardization of NFC is still in progress, many applications are proposed to use it, mostly focused on e-payment, and e-wallet. Wide range of applications are being tested in the pilot projects all around the world, such as medical services, e-ticket in public transport system, e-payments, patient information card, e-wallet and public collectable information (such as posters or bus stop information). Despite the variety of applications the security and authentication problems are not easy to solve, so many researches are being done to find new solutions. In this paper we discuss NFC technology, applications and some issue regarding the implementation of the NFC enabled systems.</p>
<p><a title="http://pointers.audiovideoweb.com/stcasx/il83win10145/inside_contactless_256k.wmv/play.asx" href="http://pointers.audiovideoweb.com/stcasx/il83win10145/inside_contactless_256k.wmv/play.asx">http://pointers.audiovideoweb.com/stcasx/il83win10145/inside_contactless_256k.wmv/play.asx</a></p>
<p>&#160;</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:74837e00-4948-4781-beab-24b9faa18726" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/dTtB63dGw24&amp;hl=en"></param><embed src="http://www.youtube.com/v/dTtB63dGw24&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
<p>A video done by Nokia to show different applications of NFC.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save">Share/Save</a> </p>

<p>Related posts:<ol><li><a href='http://matinrad.com/index.php/2009/10/nearfield-org-a-research-project-on-nfc/' rel='bookmark' title='Permanent Link: Nearfield.org : A research project on NFC'>Nearfield.org : A research project on NFC</a></li>
<li><a href='http://matinrad.com/index.php/2009/10/e-payment-and-m-wallet/' rel='bookmark' title='Permanent Link: E-payment and m-Wallet'>E-payment and m-Wallet</a></li>
<li><a href='http://matinrad.com/index.php/2009/10/nfc-field-how-it-looks-like-in-real-world/' rel='bookmark' title='Permanent Link: NFC Field : how it looks like in real world'>NFC Field : how it looks like in real world</a></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://matinrad.com/index.php/2009/10/near-field-communication-what-is-nfc/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="http://pointers.audiovideoweb.com/stcasx/il83win10145/inside_contactless_256k.wmv/play.asx" length="0" type="video/x-ms-asf" />
		</item>
	</channel>
</rss>
