Changes between Version 2 and Version 3 of Internal/newTraceGenExtension


Ignore:
Timestamp:
Jun 6, 2017, 5:52:12 PM (7 years ago)
Author:
jkol
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/newTraceGenExtension

    v2 v3  
    33== METIS II 5G Visualization - Trace Extension ==
    44
    5  TODO Brief intro...
     5TODO Brief intro...
    66
    77=== Adding the Trace Extension code to METIS II 5G Visualization source ===
    88
    9  The following documentation gives an overview of the changes that have to be made to the original METIS II simulator for it to have the ability to generate pairwise attenuation traces for selected objects in the simulator.
     9The following documentation gives an overview of the changes that have to be made to the original METIS II simulator for it to have the ability to generate pairwise attenuation traces for selected objects in the simulator.
    1010
    1111 1.     Adding an empty object to the scene:
     
    4040=== XML Configuration File ===
    4141
     42Sample XML configuration: [attachment:config.xml config.xml]
    4243
     44Below is a brief overview of the different sections of the XML config file and how they function.
     45
     46 {{{
     47<?xml version="1.0" encoding="utf-8"?>
     48<config>
     49<links>
     50    <link name="1" default_attn="9999" max_obj="9" />
     51    <link name="2" default_attn="9999" max_obj="5" />
     52</links>
     53}}}
     54 
     55 ==== <links> ... </links> ====
     56  The links section defines how many independent sets of connections objects in the simulator may have (eg. multi-homing). It can be thought of in terms of [wiki:foo Sandbox 4] as the number of available attenuator matrices. Each matrix (ie. each link set) is independent of the other. The default attenuation per matrix (link set) is defined in this section and used in cases where maximum attenuation is calculated between a pair of objects or an object pair is not defined. The maximum number of objects per matrix (link set) is also defined here for proper generation of the trace file.