Special tranfer function VI for linear systems and eigenfunc stimuli???

Can someone tell me if there exists a vi function that gives modulus and
phase angle of a sinusoid output of a linear system when knowing the
modulus and phase angle of the sinusoid stimulus and also having the
sampled output in the time domain.
Input = sin (fi*t)
H(f)=tranfer function of the linear system
Output = |H(fi)|*sin (fi*t+angle(H(fi)))
with fi the frequency of the input wave
So I want |H(fi)| and angle(H(fi))
when given Input and the sampled output in the time domain
Thanks in advance.
Message Edited by Support on 07-10-2007 10:20 AM

Look in/at:
C:\PROGRAM FILES\NATIONAL
INSTRUMENTS\LABVIEW\vi.lib\Analysis\0measdsp.llb\Transfer Function.vi
You can also select this function from the menue Signal Processing
==>Measurement
If your sine is not periodic in the sample interval (2^N points preferrably)
you might need other stuff from that same menue like 'auto power
spectrum.vi' and 'power&frequency estimate.vi' to determine the exact
frequency. And you have to interpolate the phase (change: - pi radians per
frequency bin).
Don't forget to 'window' before taking the powerspec.
See also:
C:\PROGRAM FILES\NATIONAL
INSTRUMENTS\LABVIEW\EXAMPLES\ANALYSIS\measure\daqmeas.llb\Network Analyzer
this vi 'does it all' including DAQ.
There are a lot of examples in the help and at zone.ni.com
Keywords: FFT, Fourier,
Signal Processing etc.
wrote in message
news:[email protected]..
> Can someone tell me if there exists a vi function that gives modulus and
> phase angle of a sinusoid output of a linear system when knowing the
> modulus and phase angle of the sinusoid stimulus and also having the
> sampled output in the time domain.
>
> Input = sin (fi*t)
> H(f)=tranfer function of the linear system
> Output = |H(fi)|*sin (fi*t+angle(H(fi)))
>
> with fi the frequency of the input wave
>
> So I want |H(fi)| and angle(H(fi))
> when given Input and the sampled output in the time domain
>
> Thanks in advance.
Message Edited by Support on 07-10-2007 10:21 AM

Similar Messages

  • Function module for calculating planned and actual cost of production order

    Hi ,
    Do we have any standard function module for calculating planned and actual cost for production order?
    i need to implement this in a Z-report.
    Thanks
    Srini

    Hi,
    try below function module
    CRMCO_GET_PLAN_ACTUAL_COSTS
    CO_IH_GET_PLANNED_COSTS_TOTAL
    Regards,
    Sankaran

  • Functional specifications for AP, AR and GL

    Hi SAP Gurus,
      I am new consultant. Can anyone help me with the functional specifications for GL, AP, and AR.
      Please mail me the specifications at [email protected] Thanks in advance
    Ramesh

    Hi
    pl find this link which might be useful
    http://www.mojofat.com/tutorial/
    Assign points
    Zia

  • LSO: Function Module for follow up and inserting qualification

    Hi,
    I have a situation where the employee is booked for a course in SAP, employee will attend the course and the results will come from an external system in a text file. I need to upload this text file and do the follow up for this course with pass or failure. Is there any function module for this scenario ?
    Once I did the follow-up, if there is a qualification attached to the course type, I need to insert the qualification in the employee profile. Is there any function module for this scenario ?
    Your help will be greatly appreciated and I will give the points accordingly.
    Thanks
    Naresh

    LSO_BUFFER_PARTIC_CONFIRMATION
    LSO_UPDATE_FOLLOWUP
    LSO_BUFFER_QUALIS_FOR_TRANSFER
    LSO_UPDATE_FOLLOWUP
    LSO_BUFFER_TRAINING_FOUP
    LSO_UPDATE_FOLLOWUP
    We can use the above FM's to complete the course follow up.

  • RFC enabled function module for insert update and delete in a Ztable..

    friends..
    Is there any standatd RFC enabled function module to insert , update and delete data in a custom database-table (Ztable)? if not how can we create it? plz give me the details steps..
    what are the import, export parameters and how to develop and process it.. (for example: suppose fields in the table is Emp_Id, Name, Address)
    Thanks and Regards

    Hi,
    Try this code.
    REPORT ZMMC071Z_RMV.
    TYPE-POOLS : ABAP.
    FIELD-SYMBOLS: <DYN_TABLE> TYPE STANDARD TABLE,
                   <DYN_WA>,
                   <DYN_FIELD>,
                   <LV_CONDI>.
    DATA: DY_TABLE TYPE REF TO DATA,
    DY_LINE TYPE REF TO DATA,
    XFC TYPE LVC_S_FCAT,
    IFC TYPE LVC_T_FCAT.
    SELECTION-SCREEN BEGIN OF BLOCK F1 WITH FRAME TITLE TEXT-001.
    PARAMETERS: P_TABLE  LIKE DD02L-TABNAME OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK F1.
    Evento: At Selection Screen                                          *
    START-OF-SELECTION.
      PERFORM GET_STRUCTURE.
      PERFORM CREATE_DYNAMIC_ITAB.
      PERFORM GET_DATA.
    END-OF-SELECTION.
    *& Form get_structure
    text
    FORM GET_STRUCTURE.
      DATA : IDETAILS TYPE ABAP_COMPDESCR_TAB,
      XDETAILS TYPE ABAP_COMPDESCR.
      DATA : REF_TABLE_DES TYPE REF TO CL_ABAP_STRUCTDESCR.
      DATA VL_LENGHT(30).
    Get the structure of the table.
      REF_TABLE_DES ?=
      CL_ABAP_TYPEDESCR=>DESCRIBE_BY_NAME( P_TABLE ).
      IDETAILS[] = REF_TABLE_DES->COMPONENTS[].
      LOOP AT IDETAILS INTO XDETAILS.
        CLEAR XFC.
        XFC-FIELDNAME = XDETAILS-NAME .
        XFC-DATATYPE = XDETAILS-TYPE_KIND.
        XFC-INTTYPE = XDETAILS-TYPE_KIND.
        XFC-INTLEN = XDETAILS-LENGTH.
        XFC-DECIMALS = XDETAILS-DECIMALS.
        APPEND XFC TO IFC.
      ENDLOOP.
    ENDFORM. "get_structure
    *& Form create_dynamic_itab
    text
    FORM CREATE_DYNAMIC_ITAB.
    Create dynamic internal table and assign to FS
      CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
        EXPORTING
          IT_FIELDCATALOG = IFC
        IMPORTING
          EP_TABLE        = DY_TABLE.
      ASSIGN DY_TABLE->* TO <DYN_TABLE>.
    Create dynamic work area and assign to FS
      CREATE DATA DY_LINE LIKE LINE OF <DYN_TABLE>.
      ASSIGN DY_LINE->* TO <DYN_WA>.
    ENDFORM. "create_dynamic_itab
    *&      Form  get_data
          text
    -->  p1        text
    <--  p2        text
    FORM GET_DATA .
    *Get data from p_table into internal table <DYN_TABLE>
      SELECT * INTO TABLE <DYN_TABLE>
          FROM (P_TABLE)
    Here you can implemente function DELETE, INSERT.
    ENDFORM.                    " De_para

  • Function Module for Start time and End time

    Hi Experts,
    I need a function module for getting particular Work schedule rule start time and endtime and further details by passing personnel number and day.
    Thanks in advance.
    Sunil

    FYI - https://forums.sdn.sap.com/click.jspa?searchID=-1&messageID=5338428
    Thanks,
    SK

  • Help configuring system for media system and work

    Hello All,
    First thanks for your help
    Basically I have an outline of what I would like to do and with your help I can get rest figured out. Going to get a Mac Pro 2.66 Ghz 2Gb ram to start with then eventually upgrade to 4g ram, ATI 1900 XT Card,bluetooth and airport,2 superdrives,2 monitors hooked up and 1 hard drive of 750g Thats my starting point
    I want to buy 3 seagate drives of 750g each to fill up to max
    So question 1. is how do I set up the hard drives I have heard about raid 0 and raid 1 but not sure how to go about it?also want the safest set up have noticed sum people on forums sumtimes lose info so I am concerned
    Sum info for the above question is that my plan was to connect the 3 seagate drives into 1 and add my itunes folder to this drive basically a giant media drive plan to have all my music and over 600 and adding movies that i am converting via handbrake so when Itv is realesed I can view all my media on the tv and box all originals up and 1 extra hard drive use that simply for files documents etc.So with this info my next question is
    2.Once leopard is realesed what will be best way to back up info?and how using this configuration or different one?
    Thank you again I know I probly missed sumthing and will ask as info comes in or I remember
    P.s will be doing video editing
    PowerBook, soon to be Mac Pro   Mac OS X (10.4.8)  

    Your questions have been asked and answered in the Mac Pro forums. I suggest you take some time to search these forums for information. You will find information on RAID performance at http://www.barefeats.com.
    For information on backups visit The XLab FAQs and read the FAQ on backup and restore.
    RAIDs do not provide any data security. If you need to maintain a backup of your system and data then you will need to provide additional storage sufficient to backup your main storage array. Given your indicated configuration you would need an external RAID system made up of three 750 GB drives that would be used to backup your internal array.

  • Function Module for blocking, unblocking and deleting assets

    Hi,
    Are there function modules available for blocking,unblocking and deleting assets in SAP.
    Can I user 'BAPI_FIXEDASSET_CHANGE' for the same?
    Thanks in adavnce,
    Laxman

    Hey,
    I tried by putting the values of company code,asset number,subnumber, transaction type as 'A' and passing the value of INLA-XSPEB as 'X' in FM ASSET_MASTERRECORD_MAINTENANCE to block the asset but it is not working. I am trying many other things. Can you suggest what are the mandatory fields that need to be passed for the asset to be blocked.
    As there are lot of parameters in this FM, I am little confused. Is there a proper documentation available somewhere to understand the flow.
    Thanks in advance for the help.
    Laxman Pai.

  • CCMSPING Alerts for offline systems and agents

    At the moment we monitor our systems with ccmsping and let send alerts for the following MTS classes:
    Availability_SysPercent_ABAP
    Availability_InstPercent
    Availability_RFCPercent
    Availability_GroupPercent
    CsmTaskR3Instance.Availability
    CsmTaskR3Instance.Heartbeat
    Now the problem is, the alert will be generated only once for every threshold value. Once for green to yellow, from yellow to red and for zero availability. But we would like to send in a regular interval a mail for non availability to identify really offline systems or network gabs.
    I've tried to change the following settings:
    Which alerts should be kept?
    Display all-clears in alert browser?
    Set "Value Obsolete" and Inactive after
    Also Trigger Heartbeat LAert?
    But we have only three alerts for green to yellow, yellow to red and zero availability and nothing more.
    What I have to do, to send mor the one alert for offline systems.

    Hello Rene,
    For performance MTEs it is only possible to raise an alert if the threshold is exceeded as you describe.  This raises an alert only once because the threshold was met only once.  I do not believe there is a standard method to repeat alerts without resetting the alert because what you describe is operating as designed.  So there is no standard setting for this.
    Regards,
    Brendan

  • Function Module for Get Price  and Bonus in Sales Order

    Hi.. ABAP Guru's..
    I wanna make a function for get price and get Bonus for all material items in sales order.
    Help me for solving it.. Please.
    Thanks a lot before and after.
    Rgds,
    Asep Saepudin

    Hi,
       Welcome to SDN.
    Refer
    https://forums.sdn.sap.com/click.jspa?searchID=7085162&messageID=782207
    https://forums.sdn.sap.com/click.jspa?searchID=7085162&messageID=950526
    Regards

  • Function Module for HU Block and Unblock

    Hi,
    Can you please tell me the function module name to Block and Unblock the Handling Unit
    which is exists iin a particular warehouse?
    I searched in SDN already with no luck.
    Thanks in advance...
    Sridhar ....

    Hi,
    Try the below  Function Modules
    SD_CUSTOMER_CHECK
    SD_CUSTOMER_CHECK_1
    SD_CUSTOMER_CHECK_B
    SD_CUSTOMER_MAINTAIN_ALL
    SD_CUSTOMER_MAINTAIN_KNKA_K
    Regards,
    Anki Reddy

  • How to reverse menu or function exclusions for a system defined responsibility like System Administrator??

    Hi Experts,
    One of our students have excluded the responsibility define function and user define function from the "System Administrator" responsibility in our test instance, which resulted in disabling of responsibility creation and user creation form.  Can anyone here explain how to resolve this issue??
    Thanks.

    Your DBA should be able to help you..........

  • Function module for getting month and year of the previous month (say -6)

    Hi,
    Is there a function module that will get you the month and year of say, a month before, and as far as 11 months ago.
    For example, say today is 6/2007. I want 7 months ago.
    How do i get this value?
    What function module or method is available?
    Points will be rewarded and responses will be appreciated.
    Thank You,
    John

    Hi
    lv_period gives the month and year which is two months earlier now as we have specified lv_months as -2.
        DATA: LV_PERIOD LIKE S001-SPMON,
              LV_MONTHS(2) TYPE C VALUE '2-',
              LV_DATUM LIKE SY-DATUM,
              LV_NEWDT LIKE SY-DATUM,
            P_SPMON LIKE S001-SPMON VALUE '200601'.
        CONCATENATE P_SPMON '01' INTO LV_DATUM.
        LV_PERIOD = P_SPMON+0(6).
        CALL FUNCTION 'MONTH_PLUS_DETERMINE'
             EXPORTING
                  MONTHS  = LV_MONTHS
                  OLDDATE = LV_DATUM
            IMPORTING
                 NEWDATE = LV_NEWDT
             EXCEPTIONS
                  OTHERS  = 1.
         IF SY-SUBRC = 0.
           LV_PERIOD = LV_NEWDT+0(6).
         ENDIF.
    WRITE :/ LV_PERIOD.
    OR
    Use the following FM for getting the year and the month based on date
    CACS_DATE_GET_YEAR_MONTH
    or
    Call Function 'CCM_GO_BACK_MONTHS '.
    Funny module: 03/31/2002 - 1 month = 02/31/2002
    OR
    RE_ADD_MONTH_TO_DATE ( Add / substract month to/from date )
    Need ur reward points.
    Best regards,
    Ravi

  • Function modules for User check and Product search

    Hi,
    Please give me the names of function module which are used for user login check, and Product search.
    Thanks,
    Devender V

    Hi,
    For User login check belwo Function module,
    SUSR_LOGIN_CHECK_RFC for ECC/R3
    CRM_ISA_LOGIN_R3USER_CHECKS for CRM
    For product try below Function module.
    BAPI_MATERIAL_GET_DETAIL
    I hope this information will help you.
    Regards.
    eCommerce Developer

  • Function module for comparing dates and times

    Hi,
    I have a date and time stamp in one filed for example as below:
    20070125183045
    (the first 8 are date in YYYYMMDD format, the next 6 is time in HHMMSS format). Now I want to compare this value to another such value in terms of date and time. First I want to compare dates and then times. Do you know any function module that can serve this purpose?
    Thanks very much!

    You can compare these using the function module DURATION_DETERMINE.  This fuction will give you the difference, and it can be in a view different units, such as the difference in days, months, etc.
    Funciton module takes in Start date and time and end date and time.
    Regards,
    RIch HEilman

Maybe you are looking for

  • Create folder in FTP site

    Hello, I have an FTP site that is used in conjunction with one of my processes. I would like to be able to check if a particular folder already exists in the FTP site, and if it doesn't create one. I have been able to do this within the regular file

  • How to Read payload..?

    Hello, I am not satisfied with the display of the messages in SXMB_MONI. I want to write a program that reads table SXMSPMAST (holding all processed messages) with selection criteria = application error. For those entries I want to read the correspon

  • ICloud email same on 2 different iPad mini devices

    I was setting up 2 different iPad minis at the same time with 2 different iCloud emails.  The problem is that both the devices now have my daughter's iCloud email as the default mail.  How do I get my son's iPad mini to have his iCloud email as defau

  • Roles & authorizations

    hi all, am a BI consultant. in my project CRM part there is a need for creating new users and for that roles & authorizations has to be assigned. i want to do it. in this business same role will be having diff autherizations as per the location. exam

  • How do you stop itunes from auto downloading movies?

    I have unchecked the auto download in preferences but it still keeps downloading movies. iTunes v 10.7