Site Activity

  • Yodi Suhasta joined the group Setup Support   12 years, 3 months ago · View

  • Ke Xu posted an update in the group iTetris Custom Application Development:   12 years, 3 months ago · View

    Hello,

    First thank the developers for providing version 0.2.0 and this time the app can be run without any error.

    After reading guideline0.2.0 and running the demo app, I am still struggling to figure out how to modify the demo app. For example, the easiest test is to change the advised speed sending from RSU to vehicles. I can’t find where this value is set(or generated) at the very beginning, even if I know it is saved in ResultContainer and can find the info in the log file.

    I just wonder if there is any documentation, except the guideline, which teaches users and gives examples of how to modify and write your own app on iTETRIS. Do you guys have any similar experience? I appreciate it if someone could share any helpful hints and suggestions.

    Thanks,
    Ke

    • Avatar Image
      Xin Wei · 12 years, 2 months ago

      Maybe you can see code in file folder” applications_manager”.

    • Avatar Image
      Raik-Aissaoui · 12 years, 1 month ago

      I am trying to customize itetris example.

      For example to change the advised speed sending from RSU to vehicles, you will find it in community-demo-app/src/application-logic.cpp
      vector
      ApplicationLogic::SendBackExecutionResults(int senderId, int timestep)
      {
      vector results;

      if (timestep >= m_appStartTimeStep && senderId == 5000) {
      // Loop vehicles in the area, one message per vehicle
      for (vector::const_iterator it = m_vehiclesInArea.begin() ; it != m_vehiclesInArea.end() ; it++) {
      AppMessage message;
      message.messageId = ++m_messageCounter;
      message.status = kToBeScheduled;
      message.senderId = senderId;
      message.destinationId = (*it).id;
      message.createdTimeStep = timestep;
      //message.payloadValue = (*it).speed + 10;
      message.payloadValue = 0; //here you can change the advised speed
      m_messages.push_back(message);
      }

      // Keep in safe place all the results to send back to the iCS
      results = m_messages;

      // Loop current messages to find those to be applied and erase from the result record
      for (vector::iterator it = m_messages.begin() ; it != m_messages.end() ; it++) {
      if ((*it).status == kToBeApplied) {
      m_messages.erase(it); // The value will be applied so there is no need to have it registered any longer
      }
      }
      }

      return results;
      }

      • Avatar Image
        Raik-Aissaoui · 12 years, 1 month ago

        message.payloadValue = 0; //here you can change the advised speed

  • Yordan Mihaylov posted on the forum topic error connecting to SUMO in the group Setup Support:   12 years, 4 months ago · View

    Hi,

    according to the guideline provided you should use SUMO 0.14.0.

    But as I see in the output log, connecting SUMO succeeds on the second try (there are a total of 9 retries).

    Cheers
    Yordan

  • Raik-Aissaoui joined the group iTetris Custom Application Development   12 years, 4 months ago · View

  • Raik-Aissaoui joined the group Setup Support   12 years, 4 months ago · View

  • Julen Maneros wrote a new blog post: The new version of the iTETRIS platform is out!   12 years, 4 months ago · View

    In the past months we have worked in iTETRIS platform having into account your suggestions and feedback. Today we realease the first major upgrade of it. With this version we deliver a more stable platform and with more capabilites that can actually provide a qualitative leap ahead in your work in the ITS environment. We [...]

  • Julen Maneros commented on the blog post iTETRIS platform is already available!   12 years, 5 months ago · View

    Hello Philip, If you are able to post in the iTETRIS Community then you are in already ;-) Regarding the new version of the platform we are getting it ready. I am sorry to say that it took as longer than expected but the waiting is almost over. Thank your for your interest in iTETRIS. [...]

  • Yordan Mihaylov joined the group Bug reports   12 years, 5 months ago · View

  • Yordan Mihaylov joined the group Setup Support   12 years, 5 months ago · View

  • Yordan Mihaylov joined the group iTetris Custom Application Development   12 years, 5 months ago · View

  • Julen Maneros commented on the blog post iTETRIS platform is already available!   12 years, 5 months ago · View

    Hi Yordan,

    We are working on it. It will be available soon.

    Thank you for your interest in iTETRIS.

    Best regards,

    Julen.

  • Jacqueline Jardim commented on the blog post iTETRIS platform is already available!   12 years, 6 months ago · View

    Dear Julen,

    Thank you very much. I’ll be on the lookout for any news.

    Kind regards,
    Jacqueline

  • Julen Maneros commented on the blog post iTETRIS platform is already available!   12 years, 6 months ago · View

    Dear Jackqueline,

    Currently we have temporarily disabled the links to download the platform due to updates. It is expected that in the next cuple of weeks it will be online again. Sorry for this inconvinience and thank you for your interest in iTETRIS.

    Best regards,

    Julen.

  • Sherin Abdel Hamid and Julen Maneros are now friends   12 years, 6 months ago · View

  • Xin Wei posted on the forum topic WAVE 802.11p in the group Setup Support:   12 years, 6 months ago · View

    when I read the document about ns3.7, it tells a New user-visible feature 802.11p WiFi standards .http://code.nsnam.org/ns-3.7/raw-file/2f6a291ab441/RELEASE_NOTES

  • Xin Wei joined the group Setup Support   12 years, 6 months ago · View

  • Xin Wei posted on the forum topic WAVE 802.11p in the group Setup Support:   12 years, 6 months ago · View

    “There are a collection of NetDevice objects in ns3,including WifiNetDevice and it models a wireless network interface controller based on the IEEE 802.11 standard”,and in wifi folder,there is a file called wifi-phy-standard.h you can find something about 802.11p,and I think if 802.11p is implemented it should be in this fold,but I only find 802.11a! best [...]

  • Adyson Magalhães Maia posted on the forum topic WAVE 802.11p in the group Setup Support:   12 years, 6 months ago · View

    I have the same doubt. Does anyone know where are the WAVE’s codes?

  • Ke Xu joined the group Bug reports   12 years, 6 months ago · View

  • Ke Xu joined the group iTetris Custom Application Development   12 years, 6 months ago · View

  • Load More