--- a/CHANGES.html Wed Apr 11 11:46:20 2012 +0200
+++ b/CHANGES.html Wed Apr 11 12:23:10 2012 +0200
@@ -46,6 +46,12 @@
<hr>
<h1>Changes from ns-3.13 to ns-3-dev</h1>
+<h2>New API:</h2>
+<ul>
+<li>The new class AntennaModel provides an API for modeling the radiation pattern of antennas.
+</li>
+</ul>
+
<h2>Changes to existing API:</h2>
<ul>
<li> The Ipv6RawSocketImpl "IcmpFilter" attribute has been removed. Six
@@ -83,6 +89,10 @@
Ipv6L3Protocol. The behavior is similar to Linux's conf "send_redirects",
i.e., enable/disable the ICMPv6 Redirect sending.
</li>
+<li> The SpectrumPhy abstract class now has a new method
+<pre>virtual Ptr<AntennaModel> GetRxAntenna () = 0;</pre>
+that all derived classes need to implement in order to integrate properly with the newly added antenna model. In addition, a new member variable "Ptr<AntennaModel> txAntenna" has been added to SpectrumSignalParameters in order to allow derived SpectrumPhy classes to provide information about the antenna model used for the transmission of a waveform.
+</li>
</ul>
<h2>Changes to build system:</h2>
--- a/RELEASE_NOTES Wed Apr 11 11:46:20 2012 +0200
+++ b/RELEASE_NOTES Wed Apr 11 12:23:10 2012 +0200
@@ -30,6 +30,9 @@
- New "SendIcmpv6Redirect" attribute (and getter/setter functions) to
Ipv6L3Protocol. The behavior is similar to Linux's conf "send_redirects",
i.e., enable/disable the ICMPv6 Redirect sending.
+- An antenna module is now included, which includes different
+ radiation pattern models. See the corresponding new section of the
+ ns-3 models library documentation for details.
Bugs fixed
----------