Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Request] Setting Netprofile function #900

Open
Kraego opened this issue May 8, 2023 · 23 comments
Open

[Request] Setting Netprofile function #900

Kraego opened this issue May 8, 2023 · 23 comments
Labels
enhancement New feature or request

Comments

@Kraego
Copy link

Kraego commented May 8, 2023

Is your feature request related to a problem? Please describe.

is it possible to configure the netprofile over opendtu, to AT (like described here: https://e4mobility.at/blog/hoymiles-netzprofil-richtig-einstellen)?

Describe the solution you'd like

Set the profile like described here: https://e4mobility.at/blog/hoymiles-netzprofil-richtig-einstellen

Describe alternatives you've considered

None except buying a DTU-Wlite just to configure the profile

Additional context

No response

@Kraego Kraego added the enhancement New feature or request label May 8, 2023
@androdlang
Copy link

androdlang commented May 24, 2023

I confirm the need of setting the netprofile for some network providers (Salzburg-Netz in my case), otherwise without setting the profile the infeed is not accepted. Luckily I have a DTU-Lite, but I cannot accept buying this stick for configuring only. So it would be a great enhancement, thank you in advance.

@stefan123t
Copy link

We have been able to extract one/two Grid Profiles from a mock DTU, which allowed us to decode about 90% of the data.

Though we still lack proper traces for applying such a grid profile using the DTU W-Lite or DTU Pro in order to implement the necessary Update Grid Profile command in OpenDTU / Ahoy DTU.

If you have access to an DTU W-Lite / DTU Pro and are willing to provide the necessary trace data we can progress this issue.

@stefan123t
Copy link

stefan123t commented Nov 23, 2023

Since the Grid Profile can be understood and read we can now take the next step and apply a modified Grid Profile.
See this lumapu/ahoy#365 (comment) for the next steps to try applying a new / changed Grid Profile to one of the inverters using the respective DOWN_PRO Command.

Wie wird das DOWN_PRO (0x0E) / DOWN_DAT (0x0A) verwendet

Type_Init (0xFF=255) Das SubCmd = Type_Init (0xFF) scheint nur bei MainCmd = DOWN_PRO (0x0E=14) oder DOWN_DAT (0x0A=10) verwendet zu werden.

@stefan123t
Copy link

@tbnobody, appreciate all the documentation you added in c9508d2.
I wonder how to send a Command with a payload which is longer than the usual 32 bytes from the DTU to the inverter ?

To install the country specific Grid Profile on the inverter we have the following documented so far:
https://github.com/lumapu/ahoy/wiki/Protocol#wie-wird-das-down_pro-0x0e--down_dat-0x0a-verwendet

The currently known Grid Profiles in Hex/Binary Format have already been documented in the Wiki https://github.com/tbnobody/OpenDTU/wiki/Grid-Profile-Parser
Especially when we would like to send a a Grid Profile (e.g. the austrian AT_TOR_Erzeuger_Default seems to be a very common request) we need to use a "MultiRequest" Command to send a Grid Profile using DOWN_PRO 0x0E and INIT 0xFF

An example script for the (here AhoyDTU) Web API would look something like the following prseudo-python script to use such a Multi Request Command for DOWN_PRO / INIT and the AT-TOR Grid Profile as a payload.

espUrl="http://192.168.4.1/api"

def setGrid(iv):
    r = requests.post(espUrl + "/ctrl", json={
        "id": iv,
        "cmd": 0x0E, // DOWN_PRO
        "val": 0xFF, // INIT
        "payload": 0x0c 00 20 00 00 0b 08 fc 07 30 00 0f 09 f9 00 01 02 3f 00 32 0a 55 00 08 09 f9 10 00 13 88 12 8e 00 01 14 1e 00 01 20 00 00 01 30 03 02 58 09 cb 07 a3 13 92 12 8e 40 00 07 d0 00 10 50 00 00 01 13 9c 01 90 00 32 60 04 00 01 09 e2 0a 10 08 7e 80 00 00 00 08 44 01 2c 08 a0 09 6f 09 b4 01 2c 90 00 00 00 00 5f b0 00 00 00 01 f4 00 5f 70 02 00 01 27 10 a0 02 00 00 00 00 6e 8b 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // remove the spaces to get a single Hex/Binary block
    })
    if r.status_code == 200:
        obj = r.json()
        print(obj)
    else:
        print(f"error http: {r.status_code}")

getGrid(0)
import requests
import json

So the procedure is known in principle, but instead of a MultiResponse / MultiData Command (e.g. DevInfo Status, Alarm, etc), we also need some kind of MultiRequest Commands which allow us to send a larger Payload. I.e. at least larger than the max 32 Bytes of 1 frame.

I do not know if this is currently implemented or what information is missing for you to implement that pre-requisite for setting a Grid Profile ?

@stefan123t
Copy link

stefan123t commented Dec 19, 2023

@tbnobody currently the Grid Profile Parser is almost feature complete! Hurray 🎉 !
Only positive Leading vs. negative Lagging Power Factor is missing ;)

The next step would be the implementation to send one of the about twelve known / even a custom Grid Profile to the inverter using MultiFrame Request Commands as detailled using DOWN_PRO 0x0e and INIT 0xFF above.

Regarding the customization of Grid Profiles, we would need the upper and lower limit / ranges for all the given values for input form validation added to our Parser / Grid Profile data.
Also note that that some of the values are fixed, but most can be changed within those ranges given. If no range is given ~ usually the value cannot be changed.

I have already documented some of the Grid Profiles with Range information here:

Especially the binary ... Function Activated options would make for an easy "first target" to enable / disable some of the Inverters Grid Profile sections.

It would therefor also be nice and logical to show some (o ) disabled and ( *) enabled icons within the (initially) folded section headers to directly spot the sections currently active / deactivated within the folds.

For purposes of copy & paste and/or printing I would also appreciate if the complete Grid Profile could be unfolded, currently the other sections are automatically collapsed if I open another section.
Though the Support the development section with the binary / hex-formatted Grid Profile should remain for debug and support purposes.

Find below an illustrative image of the most common Grid Profile (>70% of known inverters use it, currently 84 entries out of a total of 118 Grid Profile entries on our Wiki):

image
image

@stefan123t
Copy link

stefan123t commented Jan 18, 2024

Prima! Danke an @nivadis für den Dump beim Grid Profile DOWN_DAT 0x0A Kommando:

Ich glaube das ist es:

TX 6.316844960000000,0x7E 0A 80722536 74438179 01 03002000000A08FC0730001E0B3B0001 E0 7F,,
TX 6.366399360000000,0x7E 0A 80722536 74438179 02 040B001E09E210001388128E0001141E C0 7F,,
TX 6.417439200000000,0x7E 0A 80722536 74438179 03 000120000001300302580AC807A31392 89 7F,,
TX 6.467220000000000,0x7E 0A 80722536 74438179 04 128E400007D003E850080001139C0190 87 7F,,
TX 6.517172800000000,0x7E 0A 80722536 74438179 05 001001F6137470020001271080000000 65 7F,,
TX 6.567292640000000,0x7E 0A 80722536 74438179 06 085B012C08B70941099D012C90000000 82 7F,,
TX 6.628907360000000,0x7E 0A 80722536 74438179 07 FFA1B000000001F4005FA00200000000 C5 7F,,
TX 6.667958880000000,0x7E 0A 80722536 74438179 88 9C27 17 7F,,

TX 6.767887520000000,0x7E 0A 80722536 74438179 88 9C27 17 7F,,
... alle 100 ms wiederholt
TX 8.984026399999999,0x7E 0A 80722536 74438179 88 9C27 17 7F,,
RX 9.041319200000000,0x7E 8A 80722536 74438179 81 000003002000 9F19 80 7F,,
TX 9.107654080000000,0x7E 0A 80722536 74438179 88 9C27 17 7F,,
RX 9.113543840000000,0x7E 8A 80722536 74438179 81 000003002000 9F19 80 7F,,
... alle 100 ms wiederholt
TX 26.587171999999999,0x7E 0A 80722536 74438179 88 9C27 17 7F,,
RX 26.589525120000001,0x7E 8A 80722536 74438179 81 000003002000 9F19 80 7F,,
... die CRC16 Checksumme wird bis zu 20 Sekunden wiederholt
... dann sollte der Inverter das persistiert haben.

... kurze Pause ~120-130 ms
TX 26.717758400000001,0x7E 15 80722536 74438179 80 0B0065A9393B000000000000000039F6B1 7F,,
RX 26.724774239999999,0x7E 95 80722536 74438179 01 000100F9012C02E9000001A0000A099FB9 7F,,

Man sieht in der letzten TX Zeile des oberen Blocks die CRC16 über das Grid Profile.
Danach wiederholt die DTU brav das letzte Paket 0x88 mit der Checksumme 0x9C27
bis 26.587 Sekunden, also insgesamt ca. 20 Sekunden lang, das sollte genügen,
damit der WR das Grid Profile persistieren / flashen kann.

Das o.a. Grid Profile ist Nummer 6 in der entsprechenden Excel Liste der bisher dokumentierten Grid Profile: #1606 (comment)

03 00 20 00 00 0a 08 fc 07 30 00 1e 0b 3b 00 01
04 0b 00 1e 09 e2 10 00 13 88 12 8e 00 01 14 1e
00 01 20 00 00 01 30 03 02 58 0a c8 07 a3 13 92
12 8e 40 00 07 d0 03 e8 50 08 00 01 13 9c 01 90
00 10 01 f6 13 74 70 02 00 01 27 10 80 00 00 00
08 5b 01 2c 08 b7 09 41 09 9d 01 2c 90 00 00 00
ff a1 b0 00 00 00 01 f4 00 5f a0 02 00 00 00 00 
9c 27

@lumapu @tbnobody vielleicht wollt Ihr das irgendwann demnächst mal ins Projekt einbauen ?

@stefan123t
Copy link

stefan123t commented Jan 24, 2024

Hier ist die Prüfung der DevControl Command Antwort vom Inverter durch die DTU Pro aus dem Hoymiles Source Code
Evtl. ist dies auch für andere DevControl Commands wie Power Limit, etc. interessant ?

RX 9.041319200000000,0x7E 8A 80722536 74438179 81 000003002000 9F19 80 7F
                                                  ^^ --------------------- pBuffer[11] Uart_CurrentReplyState
                                                      ^^^^ --------------- pBuffer[13][14] Uart_CurSendSubCmd
/***********************************************
** Function name: Three-generation protocol device control application layer receipt processing
** Descriptions:
** input parameters:    ?
** output parameters:   ?
** Returned value:      ?
*************************************************/
void UsartNrf3_Process_DevControl(u8 *pBuffer)
{
    Uart_CurrentReplyState = pBuffer[11];

    if(Uart_CurSendSubCmd != (((u16)pBuffer[14] << 8) | pBuffer[13]))
    {
        return;
    }

    switch(Uart_CurrentReplyState)
    {
        case 0: // The command was executed successfully

            //dong 2020-06-15 Grid-connected protection file self-check command is processed separately
            if(Uart_CurSendSubCmd ==  Type_SelfInspection) // Type_SelfInspection 0x28
            {
                //Improper response to self-test status, do network command processing
                MIReal[PortNO].Data.NetCmd = NET_SELF_STAUS;
                MIReal[PortNO].Data.NetStatus = NET_NOCMD;
                SelfCheckStateFlg = 1;
            }
            else
            {
                MIReal[PortNO].Data.NetStatus = NET_EXECUTION_COMPLETED;
                ProtocalLayer_Cmd = InitLayer;
                Index_Para = 0;
                CurNetCmd = NET_INIT;
            }

            break;

        case 3:  //eeprom read and write error
            Index_Para = 0;
            break;

        case 4:  //This command is not supported
            MIReal[PortNO].Data.NetStatus = NET_EXECUTION_FAILURE;
            ProtocalLayer_Cmd = InitLayer;
            Index_Para = 0;
            CurNetCmd = NET_INIT;
            break;

        case 7:  // Abnormal length of configuration parameter
            Index_Para = 0;
            break;

        default:
            break;
    }
}

@stefan123t
Copy link

lumapu/ahoy#365 (comment)

Prima! Danke an nivadis für den Dump beim Grid Profile DOWN_DAT 0x0A Kommando:
...
@lumapu @tbnobody vielleicht wollt Ihr das irgendwann demnächst mal ins Projekt einbauen ?

I have double checked it, this is the upload of a DE_VDE4105_2018 grid profile as documented already elsewhere in our S-Miles_Cloud_Grid_Profles.xlsx Sheet:

03 00 20 00 00 0A 08 FC 07 30 00 1E 0B 3B 00 01 
04 0B 00 1E 09 E2 10 00 13 88 12 8E 00 01 14 1E 
00 01 20 00 00 01 30 03 02 58 0A C8 07 A3 13 92 
12 8E 40 00 07 D0 03 E8 50 08 00 01 13 9C 01 90 
00 10 01 F6 13 74 70 02 00 01 27 10 80 00 00 00 
08 5B 01 2C 08 B7 09 41 09 9D 01 2C 90 00 00 00 
FF A1 B0 00 00 00 01 F4 00 5F A0 02 00 00 00 00

So it is the usual multi command series but this time from DTU to Inverter starting with 0x0A 0x01 .. 0x0A 0x88:

0A <inv> <dtu> 01 <grid profile in 16 byte chunks> <crc8>
0A <inv> <dtu> 02 <grid profile in 16 byte chunks> <crc8>
...
0A <inv> <dtu> 07 <grid profile in 16 byte chunks> <crc8>
0A <inv> <dtu> 88 <crc16 of grid profile> <crc8>

Then the DTU repeats the last packet 0x08 of the DOWN_DAT 0x0A command with the <crc16 of grid profile> repeated every 100ms for some time ~2,4s alone without response.
ΔT 2.4009187120602133 s

0A <inv> <dtu> 08 <crc16 of grid profile> <crc8>

Then the Inverter will chime in and reply 0x8A 0x81 with the grid profile signature and a crc16 of the 00 00 <grid profile signature> reply for some more time ~10s.
ΔT 9.7781032 s

0A <inv> <dtu> 88 <crc16 of grid profile> <crc8>
8A <inv> <dtu> 81 00 00 <grid profile signature> <crc16> 80

After that the DTU will continue to send the above crc16 of grid profile though the Inverter will stay again silent for some 2,46s.
ΔT 2.4652518400000005 s

0A <inv> <dtu> 08 <crc16 of grid profile> <crc8>

The Inverter will start to respond again presumably after reboot (2.46s) to the previous tune of 0x0A 0x88 and his 0x8A 0x81 response for another 5.29s.
ΔT 5.295623441090427 s

0A <inv> <dtu> 88 <crc16 of grid profile> <crc8>
8A <inv> <dtu> 81 00 00 <grid profile signature> <crc16> 80

So in total this final echo command 0x0A 0x88 of the DOWN_DAT and the Inverters reply 0x8A 0x81 will be repeated every 100ms until the Inverter has flashed the new Grid Profile at the right location, which takes about 20 seconds in total.
ΔT 20.308987587 s

Here you can see the two gaps in the repsonse from the Inverter in channel 14 vs. the DTU in channel 6.

image

There is a short gap of 120-130ms after these 20,3s and then it is following in the common 0x15 0x0B RealTimeRunData_Debug command request / reply cycle as usual.

15 <inv> <dtu> 80 0B00 65A9 393B 0000 0000 0000 0000 <crc16> <crc8>
95 <inv> <dtu> 01 0001 00F9 012C 02E9 0000 01A0 000A 39F6 <crc8>
95 <inv> <dtu> 82 1386 02C2 0001 001D 03E8 0149 0002 <crc16> <crc8>
...

BTW here are the timings of some of the requests as recorded by the Salea Logic 2 shrimp.
So these signal timings in seconds should be pretty precise.

26.676983679999999 request
26.724774239999999 reply 01
26.773686560000002 reply 82

27.127994399999999 request (next)
27.174777760000001 reply 01
27.223690240000000 reply 02

There is a gap of 0,04779056 seconds or 47 ms between the start of the command and the reply being received.
Actually 41,95132 ms between the end of the command and the start of the reply,
and another 46,65648 ms between end of reply 01 and start of reply 82.
After end of reply 82 it takes 353,95648 ms before the next command is sent.

@stefan123t
Copy link

stefan123t commented Jul 5, 2024

  1. Flash known Grid Profiles

@tbnobody as a first step we could allow to select / flash the most common grid profiles which are already known.

I have documented the known grid profiles along with the valid ranges as allowed by the Hoymiles Cloud UI here:
https://github.com/lumapu/ahoy/wiki/Protocol#file-name-at_tor_erzeuger_default

image

  1. Modify Grid Profile within known/allowed Ranges

In a second step we would need to verify and implement the ranges for the different grid profile versions.
And make the values which are allowed to be changed adjustable within those ranges.
I have marked adjustable values shown as digits, e.g. 255.3 (signalling an input box) with a given range other than ~.

image

For some of the Grid Profiles there are boolean variables showing 0~1 as range.
https://github.com/lumapu/ahoy/wiki/Protocol#file-name-de_vde4105_2018

Also in the Details DE_VDE4105_2018 there is Reactive Power (VAR) under Reactive Power Control (RPC)
which can be leading / lagging. This is shown by the caret ^ / v characters given in my documentation.
This could probably be better explained using a textual tool tip or a boolean leading (* ) / lagging ( *) switch in the UI.

@abuesen
Copy link

abuesen commented Jul 21, 2024

Brauche diese Funktion auch.

Seit gestern habe ich einen HMT-2250 zusätzlich in Betrieb. Profil ist EN 50549-1:2019. Hab dadurch erst auf die Spannung geschaut und tatsächlich zeigt die Messung am EHZ bereits Werte von 250V+, selbst wenn ich beide PV-Systeme trenne. Die historischen Werte zeigen regelmäßig 250V an sonnigen Tagen.

Die Hauptanlage hat noch nie abgeregelt, ein FoxESS mit Profil VDE-AR-N 4105.

@stefan123t
Copy link

stefan123t commented Jul 21, 2024

@abuesen Du kannst mit den Original Hoymiles DTUs das Grid Profile ändern oder sogar innerhalb bestimmter Grenzen anpassen. Das habe ich oben prinzipiell unter 1. und 2. beschrieben wie man es für die OpenDTU/Ahoy ebenfalls implementieren könnte.

Die EN 50549-1:2019 ist prinzipiell in der EU zugelassen da es sich um eine Vereinheitlichung der nationalen europäischen Standards handelt.
Dass der WR mit dem neueren EN Grid Profile ggü dem ein Jahr älteren, nationalen deutschen DE VDE4105:2018 etwas früher abregelt ist schade aber mE aufgrund Vereinheitlichung europäischer Normen verständlich und hinnehmbar. Sonst musst Du eben das og Feature implementieren, Dich bei Hoymiles / Deinem Händler beschweren oder eine Original Hoymiles DTU kaufen. 🤷

https://www.researchgate.net/profile/Roland-Bruendlinger/publication/338800967_Grid_Codes_in_Europe_-_Overview_on_the_current_requirements_in_European_codes_and_national_interconnection_standards/links/5e2aeea24585150ee77f6be9/Grid-Codes-in-Europe-Overview-on-the-current-requirements-in-European-codes-and-national-interconnection-standards.pdf

@mistrik1
Copy link

Ich habe eine Frage an die Profis.
Ich habe eine DTU light und einen Installer-Account von Hoymiles.
Ich habe jedoch keine Möglichkeit das Grid-Profil zu ändern oder zu modifizieren. Es ist immer nur ein Grid+Profil auswählbar.
Könnte mir hier jemand eine Hilfestellung geben. Über Tipps wäre ich dankbar.

@bombjack7000
Copy link

Habe das selbst nur einmal gemacht und auch nicht mehr über die Original-DTU in Betrieb, kann allerdings grob den Weg skizzieren:

  • mit Installer-Account in der S-Miles Cloud einloggen
  • oben ins Menü mit Schraubschlüssel und Schraubendreher (B&W), dort Netzprofilverwaltung
  • dort kannst Du ein bestehendes Profil editieren und als neues Profil speichern, also quasi ein davon abgeleitetes
  • danach über oberes Menü Anlage > Geräte > zum Mikrowechselrichter durchklicken
  • hinter dem Mikrowechselrichter auf das Schraubschlüsselsymbol > Netzprofil aktualisieren und Dein eben gespeichertes Profil auswählen
    Viel mehr kann ich dazu nicht beitragen.
    Ich hoffe das war hilfreich, wenn es hier auch im falschen Thread ist.

@mistrik1
Copy link

Ich danke Dir für Deine Hilfe!
Ich kann ein neues modifiziertes Grid-Profil erstellen.
Wenn ich dieses in den WR einspielen möchte, ist nur das Standardprofil DE_VDE4105_2018 (2.0.0) auswählbar.
Ich habe die Rollen "Unterinstallateur" und "normaler Installateur". Vielleicht reichen diesen Profile nicht aus, um die Änderungen selbständig durchzuführen.

@bombjack7000
Copy link

bombjack7000 commented Aug 23, 2024

Ich habe auch nur die "normale" Installateur-Rolle.
Habe das allerdings mit der DTU Pro eingestellt.
Wie an verschiedenen Stellen zu lesen ist, soll es auch mit der DTU Lite gehen.
Dazu kann ich mangels DTU Lite aber nichts sagen.

@stefan123t
Copy link

@bombjack7000 danke für die Anleitung das passt hier schon zum Thema, da wir noch nicht wissen wie solche Custom Grid Profiles von der S-Miles Cloud überhaupt identifiziert werden können.
Ich glaube wir hatten bereits ein paar Grid Profiles die auch auf angepassten Original Vorlagen basieren. Aber ein klares Schema wie sich dann die Grid Profile Version (die ersten vier Bytes des GridProfiles) ändert ist mir noch nicht bekannt.
Vielleicht kannst Du hier mit dem Grid Profile das Du über die DTU Pro angepasst hast, etwas zur Klärung dieser Frage beitragen?
Einfach den Namen aus der Hoymiles S-Miles Cloud und die Hex Werte aus OpenDTU hier mal anhängen. Danke!

@fred777
Copy link

fred777 commented Sep 12, 2024

Hier mal mein Beitrag dazu: HMS2000 mit angepasstem DE_VDE4105_2018 Profil (Gen3, Germany, 2.0.1) dem ich den Alias DE_VDE4105_2018_FW100 gegeben habe weil ich FW Droop Slope auf 100%/Hz gesetzt habe. Wird dann in OpenDTU als DE - DE_VDE4105_2018 angezeigt.

03 00 20 01 00 0a 08 fc 07 30 00 1e 0b 3b 00 01 04 0b 00 1e 09 e2 10 00 13 88 12 8e 00 01 14 1e 00 01 20 00 00 01 30 03 02 58 0a c8 07 a3 13 92 12 8e 40 00 07 d0 00 10 50 08 00 01 13 9c 03 e8 00 10 01 f6 13 74 70 02 00 01 27 10 80 00 00 00 08 5b 01 2c 08 b7 09 41 09 9d 01 2c 90 00 00 00 ff a1 b0 00 00 00 01 f4 00 5f a0 02 00 00 00 00 d7 fb

@stefan123t
Copy link

stefan123t commented Sep 12, 2024

Danke @fred777
das heißt er verwendet den selben Version Header wie für die anderen Grid Profile der DE_VDE4105_2018 (Version 2.0.1) aber eben eine andere CRC16 Checksum.

DE_VDE4105_2018 (Version 2.0.1) CRC16: 8d aa
03 00 20 01 ... 8d aa <- Original DE_VDE4105_2018 CRC16
03 00 20 01 ... d7 fb <- @fred777 DE_VDE4105_2018_FW100 Modifikation CRC16

@tbnobody wir können also Anpassungen nur anhand der CRC16 Checksumme in den letzten beiden Bytes vom Default/Original Hoymiles Grid Profile Template unterscheiden, wenn wir nicht jeden einzelnen Wert vergleichen wollen.

Also +1 von mir, dass wir die CRC16 Checksum der bekannten Grid Profile noch zusätzlich in den Code aufnehmen um Modifikationen der Defaults zu erkennen und ggf. in OpenDTU anzuzeigen.

@stefan123t
Copy link

stefan123t commented Sep 14, 2024

@fred777 @Taurus1958 ihr könnt mal hier https://github.com/tbnobody/OpenDTU/wiki/Grid-Profile-Parser und hier https://github.com/lumapu/ahoy/wiki/Protocol#file-name-de_vde4105_2018 nachsehen, ob Eure angepassten Grid Profile dort so oder so ähnlich schon gelistet sind ?

@lumapu hatte mal die offiziellen Grid Profile aus der S-Miles Cloud extrahiert https://discord.com/channels/984173303147155506/998975048230641736/1197668874255081546

Uploading profiles_json.zip… Failed

So lange wir also keinen direkten Zugriff auf die profile_xxxx.json in der Hoymiles S-Miles Cloud haben (Username/Password Credential und OAuth Token) werden wir keinen in der Cloud vergebenen Custom name erfahren.
Aber dass es ein modifiziertes Template/Grid Profile ist könnten wir für die häufigaten Grid Profile anzeigen.

@stefan123t
Copy link

profile_15854.json

profile_15854.json

{
    "status": "0",
    "message": "success",
    "data": {
        "id": 15854,
        "name": "DE_VDE4105_2018",
        "type": 3,
        "dept_id": 101171,
        "country_code": "DE",
        "sn_prefix": "1121,1141,1161,1123,1143,1163,1144,1164,1381,1382",
        "version": "2.0.1",
        "create_by": 59209,
        "create_at": "2021-03-23 21:31:24",
        "update_by": 59209,
        "update_at": "2021-03-23 21:31:24",
        "country_std": 768,
        "inner_version": 8192,
        "item_data": [
            {
                "id": 310727,
                "order_idx": 1,
                "cfg_data": {
                    "name": "DE_VDE4105_2018",
                    "type": 1,
                    "mark": null,
                    "content": "",
                    "position": null,
                    "unit": null,
                    "max": null,
                    "min": null,
                    "multiple": null,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310728,
                "order_idx": 2,
                "cfg_data": {
                    "name": "CountryStd",
                    "type": 30,
                    "mark": null,
                    "content": "768",
                    "position": 0,
                    "unit": "",
                    "max": null,
                    "min": null,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 0,
                    "edit": 0
                }
            },
            {
                "id": 310729,
                "order_idx": 3,
                "cfg_data": {
                    "name": "Version",
                    "type": 60,
                    "mark": null,
                    "content": "8192",
                    "position": 2,
                    "unit": "",
                    "max": null,
                    "min": null,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 0,
                    "edit": 0
                }
            },
            {
                "id": 310730,
                "order_idx": 4,
                "cfg_data": {
                    "name": "H/LVRT",
                    "type": 1,
                    "mark": null,
                    "content": "",
                    "position": null,
                    "unit": null,
                    "max": null,
                    "min": null,
                    "multiple": null,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310731,
                "order_idx": 5,
                "cfg_data": {
                    "name": "H/LVRT F&C Code",
                    "type": 6,
                    "mark": null,
                    "content": "10",
                    "position": 4,
                    "unit": "",
                    "max": null,
                    "min": null,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 0,
                    "edit": 0
                }
            },
            {
                "id": 310732,
                "order_idx": 6,
                "cfg_data": {
                    "name": "Nominal Voltage (NV)",
                    "type": 6,
                    "mark": null,
                    "content": "230",
                    "position": 6,
                    "unit": "V",
                    "max": null,
                    "min": null,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310733,
                "order_idx": 7,
                "cfg_data": {
                    "name": "Low Voltage 1 (LV1)",
                    "type": 6,
                    "mark": null,
                    "content": "184",
                    "position": 8,
                    "unit": "V",
                    "max": 184,
                    "min": 170,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310734,
                "order_idx": 8,
                "cfg_data": {
                    "name": "LV1 Maximum Trip Time (MTT)",
                    "type": 6,
                    "mark": null,
                    "content": "3",
                    "position": 10,
                    "unit": "s",
                    "max": null,
                    "min": null,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310735,
                "order_idx": 9,
                "cfg_data": {
                    "name": "High Voltage 1 (HV1)",
                    "type": 6,
                    "mark": null,
                    "content": "287.5",
                    "position": 12,
                    "unit": "V",
                    "max": 288,
                    "min": 280,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310736,
                "order_idx": 10,
                "cfg_data": {
                    "name": "HV1 Maximum Trip Time (MTT)",
                    "type": 6,
                    "mark": null,
                    "content": "0.1",
                    "position": 14,
                    "unit": "s",
                    "max": null,
                    "min": null,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310737,
                "order_idx": 11,
                "cfg_data": {
                    "name": "Low Voltage 2 (LV2)",
                    "type": 6,
                    "mark": null,
                    "content": "103.5",
                    "position": 16,
                    "unit": "V",
                    "max": 120,
                    "min": 102,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310738,
                "order_idx": 12,
                "cfg_data": {
                    "name": "LV2 Maximum Trip Time (MTT)",
                    "type": 6,
                    "mark": null,
                    "content": "0.3",
                    "position": 18,
                    "unit": "s",
                    "max": null,
                    "min": null,
                    "multiple": 100,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310739,
                "order_idx": 13,
                "cfg_data": {
                    "name": "10mins Average High Voltage (AHV)",
                    "type": 6,
                    "mark": null,
                    "content": "253",
                    "position": 20,
                    "unit": "V",
                    "max": 253,
                    "min": 245,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310740,
                "order_idx": 14,
                "cfg_data": {
                    "name": "H/LFRT",
                    "type": 1,
                    "mark": null,
                    "content": "",
                    "position": null,
                    "unit": null,
                    "max": null,
                    "min": null,
                    "multiple": null,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310741,
                "order_idx": 15,
                "cfg_data": {
                    "name": "H/LFRT F&C Code",
                    "type": 6,
                    "mark": null,
                    "content": "4096",
                    "position": 22,
                    "unit": "",
                    "max": null,
                    "min": null,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 0,
                    "edit": 0
                }
            },
            {
                "id": 310742,
                "order_idx": 16,
                "cfg_data": {
                    "name": "Nominal Frequency",
                    "type": 6,
                    "mark": null,
                    "content": "50",
                    "position": 24,
                    "unit": "Hz",
                    "max": null,
                    "min": null,
                    "multiple": 100,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310743,
                "order_idx": 17,
                "cfg_data": {
                    "name": "Low Frequency 1 (LF1)",
                    "type": 6,
                    "mark": null,
                    "content": "47.5",
                    "position": 26,
                    "unit": "Hz",
                    "max": 49,
                    "min": 47.5,
                    "multiple": 100,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310744,
                "order_idx": 18,
                "cfg_data": {
                    "name": "LF1 Maximum Trip Time (MTT)",
                    "type": 6,
                    "mark": null,
                    "content": "0.1",
                    "position": 28,
                    "unit": "s",
                    "max": null,
                    "min": null,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310745,
                "order_idx": 19,
                "cfg_data": {
                    "name": "High Frequency 1 (HF1)",
                    "type": 6,
                    "mark": null,
                    "content": "51.5",
                    "position": 30,
                    "unit": "Hz",
                    "max": 51.5,
                    "min": 50.5,
                    "multiple": 100,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310746,
                "order_idx": 20,
                "cfg_data": {
                    "name": "HF1 Maximum Trip time (MTT)",
                    "type": 6,
                    "mark": null,
                    "content": "0.1",
                    "position": 32,
                    "unit": "s",
                    "max": null,
                    "min": null,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310747,
                "order_idx": 21,
                "cfg_data": {
                    "name": "Islanding Detection (ID)",
                    "type": 1,
                    "mark": null,
                    "content": "",
                    "position": null,
                    "unit": null,
                    "max": null,
                    "min": null,
                    "multiple": null,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310748,
                "order_idx": 22,
                "cfg_data": {
                    "name": "ID F&C Code",
                    "type": 6,
                    "mark": null,
                    "content": "8192",
                    "position": 34,
                    "unit": "",
                    "max": null,
                    "min": null,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 0,
                    "edit": 0
                }
            },
            {
                "id": 310749,
                "order_idx": 23,
                "cfg_data": {
                    "name": "ID Function Activated",
                    "type": 6,
                    "mark": null,
                    "content": "1",
                    "position": 36,
                    "unit": "",
                    "max": 1,
                    "min": 0,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310750,
                "order_idx": 24,
                "cfg_data": {
                    "name": "Reconnection (RT)",
                    "type": 1,
                    "mark": null,
                    "content": "",
                    "position": null,
                    "unit": null,
                    "max": null,
                    "min": null,
                    "multiple": null,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310751,
                "order_idx": 25,
                "cfg_data": {
                    "name": "RT F&C Code",
                    "type": 6,
                    "mark": null,
                    "content": "12291",
                    "position": 38,
                    "unit": "",
                    "max": null,
                    "min": null,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 0,
                    "edit": 0
                }
            },
            {
                "id": 310752,
                "order_idx": 26,
                "cfg_data": {
                    "name": "Reconnect Time (RT)",
                    "type": 6,
                    "mark": null,
                    "content": "60",
                    "position": 40,
                    "unit": "s",
                    "max": 300,
                    "min": 10,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310753,
                "order_idx": 27,
                "cfg_data": {
                    "name": "Reconnect High Voltage (RHV)",
                    "type": 6,
                    "mark": null,
                    "content": "253",
                    "position": 42,
                    "unit": "V",
                    "max": 253,
                    "min": 240,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310754,
                "order_idx": 28,
                "cfg_data": {
                    "name": "Reconnect Low Voltage (RLV)",
                    "type": 6,
                    "mark": null,
                    "content": "195.5",
                    "position": 44,
                    "unit": "V",
                    "max": 210,
                    "min": 195.5,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310755,
                "order_idx": 29,
                "cfg_data": {
                    "name": "Reconnect High Frequency (RHF)",
                    "type": 6,
                    "mark": null,
                    "content": "50.1",
                    "position": 46,
                    "unit": "Hz",
                    "max": 50.9,
                    "min": 50.1,
                    "multiple": 100,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310756,
                "order_idx": 30,
                "cfg_data": {
                    "name": "Reconnect Low Frequency (RLF)",
                    "type": 6,
                    "mark": null,
                    "content": "47.5",
                    "position": 48,
                    "unit": "Hz",
                    "max": 49.9,
                    "min": 47.5,
                    "multiple": 100,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310757,
                "order_idx": 31,
                "cfg_data": {
                    "name": "Ramp Rates(RR)",
                    "type": 1,
                    "mark": null,
                    "content": "",
                    "position": null,
                    "unit": null,
                    "max": null,
                    "min": null,
                    "multiple": null,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310758,
                "order_idx": 32,
                "cfg_data": {
                    "name": "RR F&C Code",
                    "type": 6,
                    "mark": null,
                    "content": "16384",
                    "position": 50,
                    "unit": "",
                    "max": null,
                    "min": null,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 0,
                    "edit": 0
                }
            },
            {
                "id": 310759,
                "order_idx": 33,
                "cfg_data": {
                    "name": "Normal Ramp up Rate (RUR_NM) ",
                    "type": 6,
                    "mark": null,
                    "content": "20",
                    "position": 52,
                    "unit": "Rated%/s",
                    "max": 100,
                    "min": 10,
                    "multiple": 100,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310760,
                "order_idx": 34,
                "cfg_data": {
                    "name": "Soft Start Ramp up Rate (RUR_SS)",
                    "type": 6,
                    "mark": null,
                    "content": "0.16",
                    "position": 54,
                    "unit": "Rated%/s",
                    "max": 10,
                    "min": 0.1,
                    "multiple": 100,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310761,
                "order_idx": 35,
                "cfg_data": {
                    "name": "Frequency Watt (FW)",
                    "type": 1,
                    "mark": null,
                    "content": "",
                    "position": null,
                    "unit": null,
                    "max": null,
                    "min": null,
                    "multiple": null,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310762,
                "order_idx": 36,
                "cfg_data": {
                    "name": "FW F&C Code",
                    "type": 6,
                    "mark": null,
                    "content": "20488",
                    "position": 56,
                    "unit": "",
                    "max": null,
                    "min": null,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 0,
                    "edit": 0
                }
            },
            {
                "id": 310763,
                "order_idx": 37,
                "cfg_data": {
                    "name": "FW Function Activated",
                    "type": 6,
                    "mark": null,
                    "content": "1",
                    "position": 58,
                    "unit": "",
                    "max": 1,
                    "min": 0,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310764,
                "order_idx": 38,
                "cfg_data": {
                    "name": "Start of Frequency Watt Droop (Fstart)",
                    "type": 6,
                    "mark": null,
                    "content": "50.2",
                    "position": 60,
                    "unit": "Hz",
                    "max": 52,
                    "min": 50.2,
                    "multiple": 100,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310765,
                "order_idx": 39,
                "cfg_data": {
                    "name": "FW Droop Slope (Kpower_Freq)",
                    "type": 6,
                    "mark": null,
                    "content": "40",
                    "position": 62,
                    "unit": "Pn%/Hz",
                    "max": 100,
                    "min": 16.7,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310766,
                "order_idx": 40,
                "cfg_data": {
                    "name": "Recovery Ramp Rate (RRR)",
                    "type": 6,
                    "mark": null,
                    "content": "0.16",
                    "position": 64,
                    "unit": "Pn%/s",
                    "max": 50,
                    "min": 0.1,
                    "multiple": 100,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310767,
                "order_idx": 41,
                "cfg_data": {
                    "name": "Recovery High Frequency (RVHF)",
                    "type": 6,
                    "mark": null,
                    "content": "50.2",
                    "position": 66,
                    "unit": "Hz",
                    "max": null,
                    "min": null,
                    "multiple": 100,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310768,
                "order_idx": 42,
                "cfg_data": {
                    "name": "Recovery Low Frequency (RVLF)",
                    "type": 6,
                    "mark": null,
                    "content": "49.8",
                    "position": 68,
                    "unit": "Hz",
                    "max": null,
                    "min": null,
                    "multiple": 100,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310769,
                "order_idx": 43,
                "cfg_data": {
                    "name": "Active Power Control (APC)",
                    "type": 1,
                    "mark": null,
                    "content": "",
                    "position": null,
                    "unit": null,
                    "max": null,
                    "min": null,
                    "multiple": null,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310770,
                "order_idx": 44,
                "cfg_data": {
                    "name": "APC F&C Code",
                    "type": 6,
                    "mark": null,
                    "content": "28674",
                    "position": 70,
                    "unit": "",
                    "max": null,
                    "min": null,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 0,
                    "edit": 0
                }
            },
            {
                "id": 310771,
                "order_idx": 45,
                "cfg_data": {
                    "name": "APC Function Activated",
                    "type": 6,
                    "mark": null,
                    "content": "1",
                    "position": 72,
                    "unit": "",
                    "max": 1,
                    "min": 0,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310772,
                "order_idx": 46,
                "cfg_data": {
                    "name": "Power Ramp Rate (PRR)",
                    "type": 6,
                    "mark": null,
                    "content": "0.5",
                    "position": 74,
                    "unit": "Pn%/s",
                    "max": 0.66,
                    "min": 0.33,
                    "multiple": 100,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310773,
                "order_idx": 47,
                "cfg_data": {
                    "name": "Volt Var (VV)",
                    "type": 1,
                    "mark": null,
                    "content": "",
                    "position": null,
                    "unit": null,
                    "max": null,
                    "min": null,
                    "multiple": null,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310774,
                "order_idx": 48,
                "cfg_data": {
                    "name": "VV F&C Code",
                    "type": 6,
                    "mark": null,
                    "content": "32768",
                    "position": 76,
                    "unit": "",
                    "max": null,
                    "min": null,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 0,
                    "edit": 0
                }
            },
            {
                "id": 310775,
                "order_idx": 49,
                "cfg_data": {
                    "name": "VV Function Activated",
                    "type": 6,
                    "mark": null,
                    "content": "0",
                    "position": 78,
                    "unit": "",
                    "max": 1,
                    "min": 0,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310776,
                "order_idx": 50,
                "cfg_data": {
                    "name": "Voltage Set Point V1",
                    "type": 6,
                    "mark": null,
                    "content": "213.9",
                    "position": 80,
                    "unit": "V",
                    "max": null,
                    "min": null,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310777,
                "order_idx": 51,
                "cfg_data": {
                    "name": "Reactive Set Point Q1",
                    "type": 6,
                    "mark": null,
                    "content": "30",
                    "position": 82,
                    "unit": "%Pn",
                    "max": 100,
                    "min": 0,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310778,
                "order_idx": 52,
                "cfg_data": {
                    "name": "Voltage Set Point V2",
                    "type": 6,
                    "mark": null,
                    "content": "223.1",
                    "position": 84,
                    "unit": "V",
                    "max": null,
                    "min": null,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310779,
                "order_idx": 53,
                "cfg_data": {
                    "name": "Voltage Set Point V3",
                    "type": 6,
                    "mark": null,
                    "content": "236.9",
                    "position": 86,
                    "unit": "V",
                    "max": null,
                    "min": null,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310780,
                "order_idx": 54,
                "cfg_data": {
                    "name": "Voltage Set Point V4",
                    "type": 6,
                    "mark": null,
                    "content": "246.1",
                    "position": 88,
                    "unit": "V",
                    "max": null,
                    "min": null,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310781,
                "order_idx": 55,
                "cfg_data": {
                    "name": "Reactive Set Point Q4",
                    "type": 6,
                    "mark": null,
                    "content": "30",
                    "position": 90,
                    "unit": "%Pn",
                    "max": 100,
                    "min": 0,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310782,
                "order_idx": 56,
                "cfg_data": {
                    "name": "Specified Power Factor (SPF)",
                    "type": 1,
                    "mark": null,
                    "content": "",
                    "position": null,
                    "unit": null,
                    "max": null,
                    "min": null,
                    "multiple": null,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310783,
                "order_idx": 57,
                "cfg_data": {
                    "name": "SPF F&C Code",
                    "type": 6,
                    "mark": null,
                    "content": "36864",
                    "position": 92,
                    "unit": "",
                    "max": null,
                    "min": null,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 0,
                    "edit": 0
                }
            },
            {
                "id": 310784,
                "order_idx": 58,
                "cfg_data": {
                    "name": "SPF Function Activated",
                    "type": 6,
                    "mark": null,
                    "content": "0",
                    "position": 94,
                    "unit": "",
                    "max": 1,
                    "min": 0,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310785,
                "order_idx": 59,
                "cfg_data": {
                    "name": "Power Factor (PF)",
                    "type": 6,
                    "mark": null,
                    "content": "0.95",
                    "position": 96,
                    "unit": "",
                    "max": 1,
                    "min": 0.9,
                    "multiple": 100,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310786,
                "order_idx": 60,
                "cfg_data": {
                    "name": "Watt Power Factor (WPF)",
                    "type": 1,
                    "mark": null,
                    "content": "",
                    "position": null,
                    "unit": null,
                    "max": null,
                    "min": null,
                    "multiple": null,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310787,
                "order_idx": 61,
                "cfg_data": {
                    "name": "WPF F&C Code",
                    "type": 6,
                    "mark": null,
                    "content": "45056",
                    "position": 98,
                    "unit": "",
                    "max": null,
                    "min": null,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 0,
                    "edit": 0
                }
            },
            {
                "id": 310788,
                "order_idx": 62,
                "cfg_data": {
                    "name": "WPF Function Activated",
                    "type": 6,
                    "mark": null,
                    "content": "0",
                    "position": 100,
                    "unit": "",
                    "max": 1,
                    "min": 0,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310789,
                "order_idx": 63,
                "cfg_data": {
                    "name": "Start of Power of WPF (Pstart)",
                    "type": 6,
                    "mark": null,
                    "content": "50",
                    "position": 102,
                    "unit": "%Pn",
                    "max": null,
                    "min": null,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310790,
                "order_idx": 64,
                "cfg_data": {
                    "name": "Power Factor ar Rated Power (PFRP)",
                    "type": 6,
                    "mark": null,
                    "content": "0.95",
                    "position": 104,
                    "unit": "",
                    "max": 1,
                    "min": 0.8,
                    "multiple": 100,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310791,
                "order_idx": 65,
                "cfg_data": {
                    "name": "Reactive Power Control (RPC)",
                    "type": 1,
                    "mark": null,
                    "content": "",
                    "position": null,
                    "unit": null,
                    "max": null,
                    "min": null,
                    "multiple": null,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 0
                }
            },
            {
                "id": 310792,
                "order_idx": 66,
                "cfg_data": {
                    "name": "RPC F&C Code",
                    "type": 6,
                    "mark": null,
                    "content": "40962",
                    "position": 106,
                    "unit": "",
                    "max": null,
                    "min": null,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 0,
                    "edit": 0
                }
            },
            {
                "id": 310793,
                "order_idx": 67,
                "cfg_data": {
                    "name": "RPC Function Activated",
                    "type": 6,
                    "mark": null,
                    "content": "0",
                    "position": 108,
                    "unit": "",
                    "max": 1,
                    "min": 0,
                    "multiple": 1,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            },
            {
                "id": 310794,
                "order_idx": 68,
                "cfg_data": {
                    "name": "Reactive Power (VAR)",
                    "type": 6,
                    "mark": null,
                    "content": "0",
                    "position": 110,
                    "unit": "%Sn",
                    "max": 50,
                    "min": 0,
                    "multiple": 10,
                    "scale": null,
                    "length": null,
                    "show": 1,
                    "edit": 1
                }
            }
        ]
    },
    "systemNotice": null
}

@bombjack7000
Copy link

@stefan123t Klar doch. :)

Die Hex-Werte aus meiner OpenDTU v24.8.5 (sind identisch bei meinem HM-700 und meinem HM-1500):

03 00 20 02 00 0a 08 fc 07 30 00 1e 0b 3b 00 01 04 0b 00 1e 09 e2 10 00 13 88 12 8e 00 01 14 1e 00 01 20 00 00 01 30 03 02 58 0a c8 07 a3 13 92 12 8e 40 00 07 d0 03 e8 50 08 00 01 13 9c 01 90 00 10 01 f6 13 74 70 02 00 01 27 10 80 00 00 00 08 5b 01 2c 08 b7 09 41 09 9d 01 2c 90 00 00 01 ff a6 b0 00 00 00 01 f4 00 5f a0 02 00 00 00 00 5f 58

Die OpenDTU zeigt Name DE - DE_VDE4105_2018, Version 2.0.2 an. Das entspricht dem Eintrag in der S-Miles Cloud, wo DE_VDE4105_2018 Nacheilend 0.9 UErr Gen3 Germany 2.0.2 steht. Die Versionsnummer ist 2.0.2, weil ich erst ein Netzprofil mit Leistungsfaktor 0,9 übererregt erzeugt hatte (was V 2.0.1 ist) und davon ausgehend dieses mit o.a. Hex-Werten mit Leistungsfaktor 0,9 untererregt. Die Vorgaben vom Netzbetreiber waren da etwas "auslegbar".
Wie auch immer: die Versionsnummer scheint jedenfalls von der OpenDTU korrekt erkannt zu werden.

@fred777
Copy link

fred777 commented Sep 17, 2024

@fred777 @Taurus1958 ihr könnt mal hier https://github.com/tbnobody/OpenDTU/wiki/Grid-Profile-Parser und hier https://github.com/lumapu/ahoy/wiki/Protocol#file-name-de_vde4105_2018 nachsehen, ob Eure angepassten Grid Profile dort so oder so ähnlich schon gelistet sind ?

Naja, ich hab ja noch nen 2. HMS2000 und dort habe ich nichts verändert, d.h. dort läuft das Profil DE - DE_VDE4105_2018
Version 2.0.0 und das ist auch bereits gelistet:

03 00 20 00 00 0a 08 fc 07 30 00 1e 0b 3b 00 01 04 0b 00 1e 09 e2 10 00 13 88 12 8e 00 01 14 1e 00 01 20 00 00 01 30 03 02 58 0a c8 07 a3 13 92 12 8e 40 00 07 d0 00 10 50 08 00 01 13 9c 01 90 00 10 01 f6 13 74 70 02 00 01 27 10 80 00 00 00 08 5b 01 2c 08 b7 09 41 09 9d 01 2c 90 00 00 00 ff a1 b0 00 00 00 01 f4 00 5f a0 02 00 00 00 00 71 df

Und das einzige was ich beim anderen HMS2000 verändert habe ist die FW Droop Slope (Kpower_Freq) von 40 auf 100 Pn%/Hz

@stefan123t
Copy link

stefan123t commented Sep 17, 2024

Hier nochmal die zwei gebräuchlichsten Original Hoymiles DE Grid Profile zum Vergleich

Ich arbeite daran die og Tabelle zu überarbeiten (Formatierung, Reihenfolge)

104x

DE NF_EN_50549-1:2019 (Version 2.0.1) CRC16: cb fe
0a 00 20 01 00 0c 08 fc 07 a3 00 0f 09 e2 00 1e 
06 4a 00 14 0a 55 00 14 0a c8 00 0a 09 e2 10 03 
13 88 12 c0 00 14 13 ec 00 14 12 8e 00 05 14 50 
00 05 20 00 00 01 30 03 02 58 09 e2 07 a3 13 9c 
13 56 40 00 07 d0 00 10 50 01 00 01 13 9c 01 90 
00 10 00 00 60 00 00 01 09 e2 0a 5a 02 15 80 01 
00 00 08 5b 01 2c 08 b7 09 41 09 9d 01 2c 00 64 
90 00 00 00 00 5f b0 00 00 00 01 f4 00 5f 70 02 
00 01 27 10 a0 02 00 00 00 00 cb fe
DE_VDE4105_2018 (Version 2.0.1) CRC16: 8d aa
03 00 20 01 00 0a 08 fc 07 30 00 1e 0b 3b 00 01 
04 0b 00 1e 09 e2 10 00 13 88 12 8e 00 01 14 1e 
00 01 20 00 00 01 30 03 02 58 09 e2 07 a3 13 92 
12 8e 40 00 07 d0 00 10 50 08 00 01 13 9c 01 90 
00 10 13 9c 13 74 70 02 00 01 27 10 80 00 00 00 
08 5b 01 2c 08 b7 09 41 09 9d 01 2c 90 00 00 00 
00 5f b0 00 00 00 01 f4 00 5f a0 02 00 00 00 00 
8d aa

Grid Profile von @nivadis
#900 (comment)

DE_VDE4105_2018 (Version 2.0.0) CRC16: 9c 27
03 00 20 00 00 0a 08 fc 07 30 00 1e 0b 3b 00 01
04 0b 00 1e 09 e2 10 00 13 88 12 8e 00 01 14 1e
00 01 20 00 00 01 30 03 02 58 0a c8 07 a3 13 92
12 8e 40 00 07 d0 03 e8 50 08 00 01 13 9c 01 90
00 10 01 f6 13 74 70 02 00 01 27 10 80 00 00 00
08 5b 01 2c 08 b7 09 41 09 9d 01 2c 90 00 00 00
ff a1 b0 00 00 00 01 f4 00 5f a0 02 00 00 00 00 
9c 27

Grid Profile von @fred777
HMS2000 Original

DE_VDE4105_2018 (Version 2.0.0) CRC16: 71 df
03 00 20 00 00 0a 08 fc 07 30 00 1e 0b 3b 00 01 
04 0b 00 1e 09 e2 10 00 13 88 12 8e 00 01 14 1e 
00 01 20 00 00 01 30 03 02 58 0a c8 07 a3 13 92 
12 8e 40 00 07 d0 00 10 50 08 00 01 13 9c 01 90 
00 10 01 f6 13 74 70 02 00 01 27 10 80 00 00 00 
08 5b 01 2c 08 b7 09 41 09 9d 01 2c 90 00 00 00 
ff a1 b0 00 00 00 01 f4 00 5f a0 02 00 00 00 00 
71 df

Custom Grid Profile von @fred777
DE_VDE4105_2018 Profil (Gen3, Germany, 2.0.1)
Alias DE_VDE4105_2018_FW100
FW Droop Slope auf 100%/Hz gesetzt

DE_VDE4105_2018 (Version 2.0.1) CRC16: d7 fb
03 00 20 01 00 0a 08 fc 07 30 00 1e 0b 3b 00 01 
04 0b 00 1e 09 e2 10 00 13 88 12 8e 00 01 14 1e 
00 01 20 00 00 01 30 03 02 58 0a c8 07 a3 13 92 
12 8e 40 00 07 d0 00 10 50 08 00 01 13 9c 03 e8 
00 10 01 f6 13 74 70 02 00 01 27 10 80 00 00 00 
08 5b 01 2c 08 b7 09 41 09 9d 01 2c 90 00 00 00 
ff a1 b0 00 00 00 01 f4 00 5f a0 02 00 00 00 00 
d7 fb

Grid Profile von @bombjack7000

DE - DE_VDE4105_2018, Version 2.0.2
Alias DE_VDE4105_2018 Nacheilend 0.9 UErr Gen3 Germany 2.0.2
Netzprofil mit Leistungsfaktor 0,9 über erregt (V 2.0.1)
Leistungsfaktor 0,9 unter erregt (V 2.0.2)

DE_VDE4105_2018 (Version 2.0.2) CRC16: 5f 58
03 00 20 02 00 0a 08 fc 07 30 00 1e 0b 3b 00 01 
04 0b 00 1e 09 e2 10 00 13 88 12 8e 00 01 14 1e 
00 01 20 00 00 01 30 03 02 58 0a c8 07 a3 13 92 
12 8e 40 00 07 d0 03 e8 50 08 00 01 13 9c 01 90 
00 10 01 f6 13 74 70 02 00 01 27 10 80 00 00 00 
08 5b 01 2c 08 b7 09 41 09 9d 01 2c 90 00 00 01 
ff a6 b0 00 00 00 01 f4 00 5f a0 02 00 00 00 00 
5f 58

Also prinzipiell wird die Versionsnummer hochgezählt bei einer Anpassung durch die S-Miles Cloud und in der jeweiligen profile_xxxx.json des Nutzers ein Alias hinterlegt.

Es gibt aber auch von den Original Grid Profilen je nach Inverter Firmware Version und Inverter Firmware Creation Date unterschiedliche "Original" Versionen 2.0.0 bzw. teilweise auch 2.0.1. Siehe die o.a. Tabelle der Grid Profile.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

7 participants