-
FlexPro
- At a Glance
- Features & Options
- Applications
- All Advantages
- What’s New in FlexPro 2021
- Try FlexPro For Free
- FlexPro View OEM Freeware
- Buying Guide
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Products
- News
- Support
- Company
- Contact
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
Fileimport mit versch. Signalnamen
- This topic has 5 replies, 2 voices, and was last updated 17 years, 7 months ago by Christian Rathgeber.
-
AuthorPosts
-
April 10, 2007 at 6:44 pm #12503Christian RathgeberParticipant
Hallo,
ich habe eine Auswertung erstellt und es funktioniert perfekt. Jetzt möchte ich das ganze modifizieren. Die Messdateien sind immer von der gleichen Art, nur die Namen der Signale ändern sich.
Ist es möglich eine Formel/Datensatz/textfile oder ähnliches zu erstellen, in der allen Werten der aktuelle Name zugewiesen wird. Alle erstellten Formeln Diagramme sollen dann auf diese Formel/Datensatz/textfile zurückgreifen.Das Ziel ist also das man bei einer neuen Messdatei, bei der sich nur die Namen geändert haben, das Projekt schnell anpassen kann.
Danke im Voraus.
April 10, 2007 at 6:44 pm #8166Christian RathgeberParticipantHallo,
ich habe eine Auswertung erstellt und es funktioniert perfekt. Jetzt möchte ich das ganze modifizieren. Die Messdateien sind immer von der gleichen Art, nur die Namen der Signale ändern sich.
Ist es möglich eine Formel/Datensatz/textfile oder ähnliches zu erstellen, in der allen Werten der aktuelle Name zugewiesen wird. Alle erstellten Formeln Diagramme sollen dann auf diese Formel/Datensatz/textfile zurückgreifen.Das Ziel ist also das man bei einer neuen Messdatei, bei der sich nur die Namen geändert haben, das Projekt schnell anpassen kann.
Danke im Voraus.
April 10, 2007 at 9:18 pm #8800Bernhard KantzParticipantCreate a FPScript formula with a link to the signal (signal name placed in single quotes) if you don’t want to rename your signal. Use this FPScript formula instead of the origin signal in your analysis and presentation objects. In this case you only have to edit this FPScript formula.
FlexPro is frequently used for analyzing and documenting several measurements using ready-made templates. To do this, you set up several folders in the database. Each folder contains the respective data sets from a certain measurement. You create the document objects and analysis objects in the parent folder. Here, it is important that the data sets from the various measurements are always given the same name.
Now for example, before you update a document and thus trigger a calculation, activate the folder from which the data is to be taken using the (De)activate Folder command. All of the objects in the activated folder are then displayed in the parent folder. Therefore, FlexPro first searches in the activated folder for all data sets referenced in formulas, curves, etc., and then, if they are not found there, it searches within the parent folder.
See also:
FlexPro Online Help (F1)
Creating Templates for AnalysisApril 10, 2007 at 9:29 pm #8801Christian RathgeberParticipantThank you for the answer.
I already did it that way. But this way I got 73 signals and now 73 formulas that I have to change each time. Isn’t it possible to create one forumla instead of the 73 which contains all information?
April 11, 2007 at 12:32 am #8802Bernhard KantzParticipantIn this case I would write a VBA macro to rename the signals. But this is only possible in FlexPro Professional.
Otherwise you can create a FPScript formula which includes the 73 signal names. The formula returns a data series instead of a scalar value:
{‘signal name 1’, ‘signal name 2’, …}
With the index operator [] you can access a single signal name.April 11, 2007 at 12:36 am #8803Bernhard KantzParticipantIn this case I would write a VBA macro to rename the signals. But this is only possible in FlexPro Professional.
Otherwise you can create a FPScript formula which includes the 73 signal names. The formula returns a list instead of a scalar value:
[‘signal name 1’, ‘signal name 2’, …]
With the List Element operator you can access a single signal name. -
AuthorPosts
- You must be logged in to reply to this topic.