Jump to content
The simFlight Network Forums

yindengxie

Members
  • Posts

    112
  • Joined

  • Last visited

Posts posted by yindengxie

  1. Hello John,

    I have one question to request your help.

    We use P3D v5 as visual scene for our simulator.   Sometimes it takes off normally.

    Sometimes, it can not take off and only run in the runway.  Are there aany problems for

    the following settings:  

     if (!FSUIPC_Write(0x05DC, 2, &Slew, &dwResult))     printf("Write Error \n");   //Slew = 1

     if (!FSUIPC_Write(0x0BC8, 2, &Parking, &dwResult))  printf("Write Error \n");   //Parking = 0

     if (!FSUIPC_Write(0x0262, 2, &Pause, &dwResult))    printf("Write Error \n");   //Pause = 1
     
     if (!FSUIPC_Write(0x055C, 4, &InFlight, &dwResult)) printf("Write Error \n");   //InFlight = 0; //0 in-flight, 1 on-ground

     ===========================================================================

    THANKS!

    Dengxie Yin 
     

  2. Hello John, thanks for your reply !

    My questions are as follows: 

    If we use Jeehell320, FSUIPC and P3D then is the A320 flight dynamics models  inside P3D?

    If we use ProSim320, FSUIPC and P3D then is the A320 flight dynamics models  inside P3D?

    If we use iFly737, FSUIPC and P3D then is the B737 flight dynamics models  inside P3D?

    If we use Jeehell320, FSUIPC and MSFS then is the A320 flight dynamics models  inside MSFS?

    If we use ProSim320, FSUIPC and MSFS then is the A320 flight dynamics models  inside MSFS?

    If we use iFly737, FSUIPC and MSFS then is the B737 flight dynamics models  inside MSFS?

    Is it correct for my above-mentioned understanding? 

    Very many thanks!

    Dengxie

  3. Hello  Pete,

    I have a question to request your help:

    Aerodynamics (Flight dynamics)  are  NOT implemented  inside the Jeehell or the ProSim, 

    but  Aerodynamics (Flight dynamics)  are  implemented inside P3D or MSFS through your

    FSUIPC interface with the Jeehell or the ProSim.  Is it correct for my understanding? 

    THANKS and Best Regards!

    Dengxie 

  4. Hello Pete,

    Several months ago, I can start MSFS 2020 with your MSFS with FSUIPC7. Today I can not start MSFS 2020 with your MSFS with FSUIPC7.

    Today my computer is not connected to Internet, is it the cause that the MSFS 2020 can not started? 

    In other words, ONLY my computer is connected to the Internet, MSFS 2020 can be started and running.

    But my computer is connected to WIFI.

    THANKS!

     

    Dengxie 

     

  5. Hello Pete,

    Thank you very much for your detailed explanation.

    It seems that MEATAR weather settings are a bit complicated in FSUIPC6. We cannot individually

    set rain, snow, and thunder, and we must have a combination of rain or snow or thunder to meet their

    corresponding weather conditions.  Only in this way can P3D recognize and decode correctly, to change

    weather. For examples:

    sprintf(TxBuffer, "GLOB METAR RA"); // Rail does not work

    sprintf(TxBuffer, "GLOB METAR SN"); //Snow does not work 

    sprintf(TxBuffer, "GLOB METAR 27015KT 7SM +RA HZ TS FG DZ +UP BKN055CB 30/17 A2974");  // Rain work well

    ---------------------------------------------------------------------------------------------------------------

    THANKS and Best Regards!

    Dengxie

  6. Hello Pete,

    Thank you very much for your patient help and support.

    1) "+VCTSRA means severe thunderstorm with rain in the vicinity."
       it is cited from METAR Data Format of P3D.

    2) I do not know how to set WeatherSet2 without reference document.
       Can you give me a sample WeatherSet2 setting?

    3) Today I do the the following test: It is not necessary to set the following 
       two lines at initiation.

       uint16 TxValue = 0x0005; 
       FSUIPC_Write(0xC800, 2, (BYTE *)&TxValue, &dwResult);
       FSUIPC_Process(&dwResult);

       I only insert the following three lines on the my loop program, no problem. The weather 
       settings work very well on P3D. 

     
       sprintf(TxBuffer, "GLOB METAR 27015KT 7SM +RA HZ TS FG DZ +UP BKN055CB 30/17 A2974");
       FSUIPC_Write(0xB000, strlen(TxBuffer)+1, (void *)TxBuffer, &dwResult);
       FSUIPC_Process(&dwResult);

    4) I feel that the METAR data format must follow certain weather sequences and combinations
       so that P3D can correctly recognize and decode the METAR data format to set the weather 
       conditions we expect.
       
    Best Regards!

    Dengxie 
     

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use. Guidelines Privacy Policy We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.