Square signal of function generator does not have any straight edges

Hello, everyone!

In my job, I need to see the charge and discharge of capasitor. I have to use a schema on the photo attached to power the capasitor, because I'm going to replace it with thermoresistor, requiring a certain exact current level. I use a square wave generator functions as a service. But when I built my diet on the prototyping card and connect the generator, edges of the square wave become geometries and there is no lag CC that I set myself.

Can someone help me to know what is the problem?

Thank you in advance.

Hello samewings,

I took a bit of time and studied your wiring diagram.  Your reading of the oscilloscope, it seems that you've done well to capture the loading and unloading of response of a capacitor already.  For your information, you can compare your readings of the oscilloscope to the document I have provided below.  You will notice that your corners of square waves are rounded as the loading and unloading of curves that are visible when the charge and discharge of a capacitor.  A capacitor charge and discharge over time.  For this reason, the voltage you read in all of your circuit will show this curve depending on the time on the edges of your square.

Charging & discharging a capacitor

Tags: NI Products

Similar Questions

  • Why am I selling a total of 41 pounds (various titles) in November through Kindle, but not one through iBooks? I don't promote either, and I don't know that there are several iPads out there than Kindle. Apple does not have any promotion?

    Why am I selling a total of 41 pounds (various titles) in November through Kindle, but not one through iBooks? I don't promote either, and I don't know that there are several iPads out there than Kindle. Apple does not have any promotion?

    Why are you asking? It's between you and Apple.

  • ORA-31000 lifting even when USER_XML_SCHEMAS does not have any line.

    We create a huge XML file with patient information and medication. Read us the values of table tag and create the XML file and insert a CLOB column in a table.

    Before inserting, we want to make sure that the XML is validated against an XSD.

    To test this I created a small SP.

    DB my is: SELECT banner OF v$ version WHERE ROWNUM = 1;

    BANNER

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

    Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production

    The user has the following privileges:

    USERNAME PRIVILEGE ADMIN_OPTION

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

    PEGA CREATE SYNONYM NO.

    PEGA UNLIMITED TABLESPACE NO.

    PEGA CREATE ANY TRIGGER NO.

    My PC is:

    create or replace

    procedure validate_xml_test as

    -Local variables here

    -XML and XSD obtained from here: http://www.w3schools.com/schema/schema_howto.asp

    RES BOOLEAN;

    tempXML XMLTYPE.

    XMLTYPE xmlDoc;

    xmlSchema XMLTYPE.

    schemaURL VARCHAR2 (256): = "testcase.xsd";

    number of v_error_at;

    BEGIN

    v_error_at: = 05;

    dbms_xmlSchema.deleteSchema (schemaURL, / * 4 * / DBMS_XMLSCHEMA.) DELETE_CASCADE_FORCE);

    v_error_at: = 10;

    xmlSchema: =.

    xmlType ("<?") XML version = "1.0"? >

    " < xs: schema xmlns: XS =" http://www.w3.org/2001/XMLSchema "

    " targetNamespace = ' http://www.w3schools.com "

              xmlns=" http://www.w3schools.com "

    elementFormDefault = "qualified" >

    < xs: element name = "note" >

    < xs: complexType >

    < xs: SEQUENCE >

    < xs: element name = "en" type = "xs: String" / >

    < xs: element name = "" type = "xs: String" / >

    < xs: element name = "category" type = "xs: String" / >

    < xs: element name = "body" type = "xs: String" / >

    < / xs: SEQUENCE >

    < / xs: complexType >

    < / xs: element >

    < / xs: Schema >

    ');

    v_error_at: = 20;

    dbms_xmlschema.registerschema (schemaurl = > schemaURL,)

    schemadoc = > xmlSchema

    local = > TRUE

    , genTypes = > FALSE

    , genbean = > FALSE

    genTables = > FALSE);

    v_error_at: = 30;

    xmlDoc: =.

    XmlType ("<?") XML version = "1.0"? >

    " < note xmlns: xsi =" http://www.w3.org/2001/XMLSchema-instance "xsi: noNamespaceSchemaLocation ="'| "'. schemaURL | '">

    < to > Tove < /pour >

    < from > Jani < / from >

    < title > call < / section >

    < body > don't forget me this weekend! < / body >

    (< / note > ');

    v_error_at: = 40;

    xmlDoc: = xmlDoc.createSchemaBasedXML ();

    v_error_at: = 50;

    xmlDoc.schemaValidate ();

    -If we are here, xml is valid

    Dbms_output.put_line ('scheme is OK.");

    exception

    while others then

    Dbms_output.put_line (' error @: ' | v_error_at |) ' -> ' || SQLErrm);

    END;

    Before running I check this: select * from user_xml_schemas;

    There is no line.

    Here is the result of the PS:

    BEGIN validate_xml_test(); END;

    Error @: 5 -> ORA-31000: resource 'testcase.xsd' is not a document schema XDB

    You can copy and paste the SP above in your SQL * Developer and run.

    As you can see, the error is thrown at each the 1st statement, here: dbms_xmlSchema.deleteSchema

    Any help would be greatly appreciated. Solutions on similar errors in Google did not help.

    PS: I did some reading and found out that the error above could be because the schema does not actually exist.

    Now, I have changed my PC like this:

    create or replace

    procedure validate_xml_test as

    -Local variables here

    -XML and XML obtained from here: http://www.w3schools.com/schema/schema_howto.asp

    RES BOOLEAN;

    tempXML XMLTYPE.

    XMLTYPE xmlDoc;

    xmlSchema XMLTYPE.

    schemaURL VARCHAR2 (256): = "testcase.xsd";

    number of v_error_at;

    number of v_count;

    BEGIN

    v_error_at: = 05;

    -dbms_xmlSchema.deleteSchema (schemaURL, / * 4 * / DBMS_XMLSCHEMA.) DELETE_CASCADE_FORCE);

    SELECT COUNT (1) INTO v_count FROM user_xml_schemas WHERE schema_url = 'testcase.xsd ';

    IF v_count > 0 THEN

    GOTO label1;

    END IF;

    v_error_at: = 10;

    xmlSchema: =.

    xmlType ("<?") XML version = "1.0"? >

    " < xs: schema xmlns: XS =" http://www.w3.org/2001/XMLSchema "

    " targetNamespace = ' http://www.w3schools.com "

              xmlns=" http://www.w3schools.com "

    elementFormDefault = "qualified" >

    < xs: element name = "note" >

    < xs: complexType >

    < xs: SEQUENCE >

    < xs: element name = "en" type = "xs: String" / >

    < xs: element name = "" type = "xs: String" / >

    < xs: element name = "category" type = "xs: String" / >

    < xs: element name = "body" type = "xs: String" / >

    < / xs: SEQUENCE >

    < / xs: complexType >

    < / xs: element >

    < / xs: Schema >

    ');

    v_error_at: = 20;

    dbms_xmlschema.registerschema (schemaurl = > schemaURL,)

    schemadoc = > xmlSchema

    local = > TRUE

    , genTypes = > FALSE

    , genbean = > FALSE

    genTables = > FALSE);

    < < label1 > >

    v_error_at: = 30;

    xmlDoc: =.

    XmlType ("<?") XML version = "1.0"? >

    " < note xmlns: xsi =" http://www.w3.org/2001/XMLSchema-instance "xsi: noNamespaceSchemaLocation ="'| "'. schemaURL | '">

    < to > Tove < /pour >

    < from > Jani < / from >

    < title > call < / section >

    < body > don't forget me this weekend! < / body >

    (< / note > ');

    v_error_at: = 40;

    -xmlDoc: = xmlDoc.createSchemaBasedXML ();

    v_error_at: = 50;

    xmlDoc.schemaValidate ();

    -If we are here, xml is valid

    Dbms_output.put_line ('scheme is OK.");

    exception

    while others then

    Dbms_output.put_line (' error @: ' | v_error_at |) ' -> ' || SQLErrm);

    END;

    I interviewed SD: SELECT substr (schema_url, 1, 30) schema_url, local, substr (schema, 1, 15) pattern, SUBSTR (qual_schema_url, 1, 100) qual_sch_url of user_xml_schemas;

    SCHEMA_URL LOCAL QUAL_SCH_URL SCHEMA

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

    " testcase.xsd YES <? xml version =" http://xmlns.Oracle.com/xdb/schemas/PEGA/TestCase.xsd    

    Now when I run this I get: Error @: 50-> ORA-30937: no schema definition for 'note' (namespace ") in parent ' / '.

    But I gave the XML in the correct format as the XSD.

    The schema declares the document target namespace.

    A valid XML instance should look like this:

    "" xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance"

    "" xsi: schemaLocation = "http://www.w3schools.com testcase.xsd" >

    Tove

    Jani

    Reminder

    Don't forget me this weekend!

  • Need to reinstall windows, but does not have any CD - Satellite Pro L20

    Hi, I wanted to reinstall Windows XP home on my Satellite Pro L20, but do not have the software that my laptop came with (read the discs lost). I have a valid XP tone (like its stuck on the bottom of my laptop), but no disc so I tired using a copy of a cd of Windows XP home, which did not work, but let me go as far as the formatting of the hard drive.

    So now I use Ubuntu, but want to reinstall Windows. Have valid product key, but no software to reinstall.

    Any suggestions?

    Thank you

    Christopher

    Valid key will not help you. This key belongs to the image recovery and copy included WXP he.
    If you have two options. Either you order original Toshiba recovery image or use Microsoft installations CD key which belongs to this copy. All the necessary drivers, tools and utilities that you can download at Toshiba support page under http://eu.computers.toshiba-europe.com > support & downloads.

    Good luck!

  • I have no sound on my computer, it does not have any pregnant either.

    My computer no sound and does not recognize the speakers won't play CD

    I had the problem with the speakers being not recognised by Windows 7 and the solution that worked for me was to go to start: System: Device Manager: sound, video and game controllers: from there, right-click on your High Definition Audio (or whatever your audio) and select update.  Worked immediately for me and not too early to watch videos with my son before bedtime :)

  • XP host does not have any file that begins with "VM".

    Problem of crazy that I can't understand.  Under XP Pro SP3 on a desktop computer and try to install VMPlayer 3.01.  If I try to run the file that I downloaded I get a warning that "this application has failed to start because the application configuration is incomplete.  Reinstalling the application may fix this problem. "This exact file installs without problem on my XP Pro laptop.

    Here are the best, if I rename the file, so it does NOT begin with "VM", it will install.  But then if I try to turn on a guest operating system, I get an error because the other files that start with "VM" are started and fail.  If I rename notepad.exe to vmnotepad.exe it will not work!

    I uninstalled VMplayer and tried again with the same results.  I even tried a few VMware cleaner utility but no change.

    Any ideas?  Thank you.

    I fear that the evil is already due to 5 questions.

    Maybe the well known software little CCleaner, http://www.ccleaner.com , can be your best friend for help:

    Clean temporary files.

    Cleaning the registry.

  • Could not load the add-on Firefox 6 Manager. Does not have any modules or plugins. Stuck on 'Loading '.

    I am currently getting some "funky" my Firefox responses, so I wanted to check my addons to see if one of them was the cause.
    But I can't get the Add-ons Manager to load, it gets stuck on the page 'Start' - displays just the circle and "Loading" animation next to him.
    Have you tried to restart FF, restart the PC, start without addons.
    Because I do not run many addons or plugins, this isn't a major case-, but if someone could help me I would be grateful.

    When you open the tab of the Add-ons Manager, click anything other than to get modules.

    This item charge information on the site of modules, which I think is running slow, probably because of all the Tuesday update update related applications, both Firefox 6 and Firefox 3.6.20. Now seems to be much worse than what I saw with 4.0 and 5.0, so it is perhaps not as simple as that. But whatever the cause, once you get off that get tab Addons, the AOM window should then open with what you have selected in the future - at least that's how it works for me.

  • Outlook Express does not have any server is located. N ° Socket Error 120007 error #0x800CCCOD

    Anyone has any ideas - thanks

    Make sure that you can connect via webmail, if you have this option with your email provider.

    If webmail works, you can try to remove your e-mail account, close and reopen OE and then add your return email account once again.  Make sure also that you have not put antivirus software to analyze mail.  See www.oehelp.com/OETips.aspx#3

    Steve

  • Acer does not have any spare part for the B326HK monitor.

    I bought on 11.06.2014 in the monitor of Belgium a B326HK 4 K and it was after 2 days already broken. The monitor has been sent to the Acer service center, but it seems that they have no spare parts. I've had better service expected of Acer. Their explanation is that it is a fairly new monitor and they can get difficult spare parts. Are there people who are facing this problem?

    @ Cory. Today I finally received news of Acer with the message that the motherboard of the monitor showed an error. Because apparently these motherboards are currently difficult to obtain, Acer will send me a new monitor. When I read here on the forum about problems that have other owners of this Acer B326HK, I think they could actually sit with the same faulty motherboard in their monitor.

  • Invisible signatures by the incremental update does not have any signs?

    Hi all!

    Sorry if here is not the right place for my question. If this is the case, is - can someone inform in the right place?

    Well, I am trying to build a tool to sign a PDF of incremental update using Delphi [].

    I am beginner in PDF structure and the brevity of the time made me perhaps a bit inattentive and desperate.

    After 2 months of hard fighting, I managed to get Acrobat Reader know my PDF (initially created by a java tool called SignServer) has a signature and recognize the certificate but it says that the certification is not valid because 'the byte range is invalid.

    I analyzed the PDF file in a hex editor and the byte range signature so any other object compensates seems correct.

    My PDF test is here: https://drive.Google.com/open?ID=0B0KKmaB-a0Z4SDZfNXdZRWZEem8

    Can you tell me what the problem with this PDF?

    Many thanks for any help!

    Specifications and PDF language

  • I can't create an installer, after install the Vision Builder demo and then uninstall it. I can't create a Labview Installer more, he asks me an installer of generator of Vision, even if Labview my program does not have nothing to do with it...

    I can't create an installer on LabView, after install the Vision Builder demo and then uninstall it. I can't create a Labview Installer more, he asks me an installer of generator of Vision, even if Labview my program does not have nothing to do with it...

    Hi, Shada, this can happen if you include additional installers to your installer for example DAQmx. When you do this the installation program must include other files like MAX (Measuremente and Automation Explorer). Probably when you installed Vision Builder he updated MAX, so when your Installer try to understand MAX, his request the source where it was installed in your computer in this case Vision Builder.

    Here you can cache information so it is not asked once again, or you can download a version more recent fo DAQmx, then it will update MAX and change the dependecy.

    You can find more details about it in this KB:

    3S88PJMY knowledge base: why do I get an error message 'Missing Distribution' when you try to build an install...

    And to keep a copy, here's more information:

    How to stop missing delivery Notification whenever I build an installer?

    Best regards

  • I can not connect on DPS App Builder. This error occurs: ERROR this account does not have permission to access the App generator. Learn more about how to fix this.

    I can not connect on DPS App Builder. This error occurs: ERROR this account does not have permission to access the App generator. Learn more about how to fix this.

    Then you need to either:

    (1) sign up for cloud creative then you can build a simple edition approx. attention however: this approach will no longer valid as of May 1, when we withdraw support for a unique creative cloud and unique edition apps are only on devices iPad.

    (2) sign up for a full license of DPS. You can request information on prices using Adobe | Request for consultation.

    Neil

  • Satellite A200-1 and Windows 7 problem - function button does not work

    I have computer does model no A200-1The and windows Vista for windows 7 32-bit, I changed a moment my function button does not work.

    What should I do now? Maybe someone greet me some player? Please help me I can use my driver.

    Do you mean the FN key or what?
    > Please help me I can use my driver.
    My English is also not the best but what do you mean with driver?

  • F4 function key does not work does not in Excel 2010

    I have a HP Pavilion series g - Windows 7-64 bit

    The F4 function key does not work in (2010 excel 64-bit).

    Any suggestions?

    ch1616

    Hello

    It may be useful to change the setting of the fn key in the bios as described in the link below to see if this has an effect on the f4 key in Excel.

    http://support.HP.com/us-en/document/c02035108

    Kind regards

    DP - K

  • Satellite A350-13 a - function keys does not work

    I have the Satellite A350-13. I installed Windows 7 for 2 weeks.

    The function keys does not work although I have installed the Toshiba value added package, which is responsible for the activation of the function keys.

    What the solution to this problem?

    > Function keys does not work although I have installed the toshiba value added package, which is responsible for the activation of the function keys

    Next to the VAP (value added package) you need to install the Flash Utility card support!
    Card Flash utility support controls the keys FN and not the VAP! But VAP is also needed.

    Good bye

Maybe you are looking for